Changeset 115 for trunk/XJConf/exceptions
- Timestamp:
- 11/11/07 15:24:40 (1 year ago)
- Files:
-
- trunk/XJConf/exceptions/InvalidNamespaceDefinitionException.php (modified) (1 diff)
- trunk/XJConf/exceptions/InvalidTagDefinitionException.php (modified) (1 diff)
- trunk/XJConf/exceptions/MissingAttributeException.php (modified) (1 diff)
- trunk/XJConf/exceptions/UnknownNamespaceException.php (modified) (1 diff)
- trunk/XJConf/exceptions/UnknownTagException.php (modified) (1 diff)
- trunk/XJConf/exceptions/UnsupportedOperationException.php (modified) (1 diff)
- trunk/XJConf/exceptions/ValueConversionException.php (modified) (1 diff)
- trunk/XJConf/exceptions/XJConfException.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/XJConf/exceptions/InvalidNamespaceDefinitionException.php
r9 r115 3 3 * Exception to be thrown in case that an invalid namespace definition was detected. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that an invalid namespace definition was detected. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class InvalidNamespaceDefinitionException extends XJConfException trunk/XJConf/exceptions/InvalidTagDefinitionException.php
r9 r115 3 3 * Exception to be thrown in case that an invalid tag definition was detected. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that an invalid tag definition was detected. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class InvalidTagDefinitionException extends XJConfException trunk/XJConf/exceptions/MissingAttributeException.php
r9 r115 3 3 * Exception to be thrown in case that an required attribute is missing. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that an required attribute is missing. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class MissingAttributeException extends XJConfException trunk/XJConf/exceptions/UnknownNamespaceException.php
r9 r115 3 3 * Exception to be thrown in case that an unknown namespace definition was detected. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that an unknown namespace definition was detected. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class UnknownNamespaceException extends XJConfException trunk/XJConf/exceptions/UnknownTagException.php
r9 r115 3 3 * Exception to be thrown in case that an unknown tag definition was detected. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that an unknown tag definition was detected. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class UnknownTagException extends XJConfException trunk/XJConf/exceptions/UnsupportedOperationException.php
r9 r115 3 3 * Exception to be thrown in case that a method was called that should not be called. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that a method was called that should not be called. 10 13 * 11 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class UnsupportedOperationException extends XJConfException trunk/XJConf/exceptions/ValueConversionException.php
r9 r115 3 3 * Exception to be thrown in case that a value conversion failed. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 7 XJConfLoader::load('exceptions.XJConfException');10 namespace net::xjconf::exceptions; 8 11 /** 9 12 * Exception to be thrown in case that a value conversion failed. 10 * 11 * @package XJConf 13 * 14 * @package XJConf 15 * @subpackage exceptions 12 16 */ 13 17 class ValueConversionException extends XJConfException trunk/XJConf/exceptions/XJConfException.php
r9 r115 3 3 * Base esception for all other XJConf exceptions. 4 4 * 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 5 * @author Stephan Schmidt <stephan.schmidt@schlund.de> 6 * @author Frank Kleine <mikey@xjconf.net> 7 * @package XJConf 8 * @subpackage exceptions 6 9 */ 10 namespace net::xjconf::exceptions; 7 11 /** 8 12 * Base esception for all other XJConf exceptions. 9 13 * 10 * @package XJConf 14 * @package XJConf 15 * @subpackage exceptions 11 16 */ 12 class XJConfException extends Exception17 class XJConfException extends ::Exception 13 18 { 14 19 // nothing to do here
