init exception handling
This commit is contained in:
parent
9adbbdd164
commit
824e1f1625
3 changed files with 24 additions and 0 deletions
8
conlite/classes/Exceptions/Exception.php
Normal file
8
conlite/classes/Exceptions/Exception.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class Exception extends \Exception
|
||||
{
|
||||
|
||||
}
|
8
conlite/classes/Exceptions/InvalidArgumentException.php
Normal file
8
conlite/classes/Exceptions/InvalidArgumentException.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class InvalidArgumentException extends LogicException
|
||||
{
|
||||
|
||||
}
|
8
conlite/classes/Exceptions/LogicException.php
Normal file
8
conlite/classes/Exceptions/LogicException.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class LogicException extends Exception
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in a new issue