init exception handling

This commit is contained in:
o.pinke 2024-03-11 15:28:14 +01:00
parent 9adbbdd164
commit 824e1f1625
3 changed files with 24 additions and 0 deletions

View file

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

View file

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

View file

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