This commit is contained in:
2026-07-12 20:10:20 +02:00
parent 2e66b8f936
commit efd1a91b1d
19 changed files with 4723 additions and 10 deletions
@@ -0,0 +1,7 @@
<?php
namespace SleekDB\Exceptions;
class IOException extends \Exception
{
}
@@ -0,0 +1,7 @@
<?php
namespace SleekDB\Exceptions;
class IdNotAllowedException extends \Exception
{
}
@@ -0,0 +1,7 @@
<?php
namespace SleekDB\Exceptions;
class InvalidArgumentException extends \Exception
{
}
@@ -0,0 +1,7 @@
<?php
namespace SleekDB\Exceptions;
class InvalidConfigurationException extends \Exception
{
}
@@ -0,0 +1,11 @@
<?php
namespace SleekDB\Exceptions;
/**
* Class InvalidPropertyAccessException
* @deprecated since version 2.7.
*/
class InvalidPropertyAccessException extends \Exception
{
}
@@ -0,0 +1,7 @@
<?php
namespace SleekDB\Exceptions;
class JsonException extends \Exception
{
}