init exception handling
Dieser Commit ist enthalten in:
Ursprung
9adbbdd164
Commit
824e1f1625
3 geänderte Dateien mit 24 neuen und 0 gelöschten Zeilen
8
conlite/classes/Exceptions/Exception.php
Normale Datei
8
conlite/classes/Exceptions/Exception.php
Normale Datei
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class Exception extends \Exception
|
||||
{
|
||||
|
||||
}
|
8
conlite/classes/Exceptions/InvalidArgumentException.php
Normale Datei
8
conlite/classes/Exceptions/InvalidArgumentException.php
Normale Datei
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class InvalidArgumentException extends LogicException
|
||||
{
|
||||
|
||||
}
|
8
conlite/classes/Exceptions/LogicException.php
Normale Datei
8
conlite/classes/Exceptions/LogicException.php
Normale Datei
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace ConLite\Exceptions;
|
||||
|
||||
class LogicException extends Exception
|
||||
{
|
||||
|
||||
}
|
Laden …
In neuem Issue referenzieren