Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 1
core_kernel_classes_EmptyProperty
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 4
20
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 getProperty
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getResource
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getSeverity
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2002-2008 (original work) Public Research Centre Henri Tudor & University of Luxembourg
19 *                         (under the project TAO & TAO2);
20 *               2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung
21 *                         (under the project TAO-TRANSFER);
22 *               2009-2012 (update and modification) Public Research Centre Henri Tudor
23 *                         (under the project TAO-SUSTAIN & TAO-DEV);
24 *
25 */
26
27/**
28 * Thrown when retrieving an expected property
29 * and not finding it (usualy via getUniqueProperty())
30 *
31 * Extends common_exception_EmptyProperty to be backwards compatible
32 *
33 * @access public
34 * @author Joel Bout, <joel@taotesting.com>
35 * @package generis
36 */
37class core_kernel_classes_EmptyProperty extends common_exception_EmptyProperty
38{
39    // --- ASSOCIATIONS ---
40
41
42    // --- ATTRIBUTES ---
43
44    /**
45     * @access private
46     * @var core_kernel_classes_Property
47     */
48    private $property = null;
49
50    /**
51     * @access private
52     * @var core_kenel_classes_Resource
53     */
54    private $resource = null;
55
56    // --- OPERATIONS ---
57
58    /**
59     * Short description of method __construct
60     *
61     * @access public
62     * @param  core_kernel_classes_Resource resource
63     * @param  core_kernel_classes_Property property
64     * @return mixed
65     */
66    public function __construct(core_kernel_classes_Resource $resource, core_kernel_classes_Property $property)
67    {
68        $this->resource = $resource;
69        $this->property = $property;
70        parent::__construct("Property ({$property->getUri()}) of resource ({$resource->getUri()}) should not be empty");
71    }
72
73    /**
74     * Returns the property that was empty
75     *
76     * @access public
77     * @return core_kernel_classes_Property
78     */
79    public function getProperty()
80    {
81        return $this->property;
82    }
83
84    /**
85     * Returns the resource with the empty property
86     *
87     * @access public
88     * @return core_kernel_classes_Resource
89     */
90    public function getResource()
91    {
92        return $this->resource;
93    }
94
95    /**
96     * Returns the severity of the exception
97     * Used in the common/Logger
98     *
99     * @return number
100     */
101    public function getSeverity()
102    {
103        return common_Logger::WARNING_LEVEL;
104    }
105}