init exception handling

Dieser Commit ist enthalten in:
o.pinke 2024-03-11 15:28:14 +01:00
Ursprung 9adbbdd164
Commit 824e1f1625
3 geänderte Dateien mit 24 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,8 @@
<?php
namespace ConLite\Exceptions;
class Exception extends \Exception
{
}

Datei anzeigen

@ -0,0 +1,8 @@
<?php
namespace ConLite\Exceptions;
class InvalidArgumentException extends LogicException
{
}

Datei anzeigen

@ -0,0 +1,8 @@
<?php
namespace ConLite\Exceptions;
class LogicException extends Exception
{
}