Initial xentral_oss_20.3.c9ffacf

This commit is contained in:
Alex
2021-05-21 08:49:41 +02:00
parent 5406e4a551
commit 34e5ac43d9
18884 changed files with 2109867 additions and 0 deletions
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class BindParameterException extends \RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class ConfigException extends \InvalidArgumentException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class ConnectionException extends \RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,12 @@
<?php
namespace Xentral\Components\Database\Exception;
use RuntimeException;
/**
* @deprecated Will be removed in 19.4
*/
class DatabaseException extends RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Components\Database\Exception;
use Xentral\Core\Exception\ComponentExceptionInterface;
interface DatabaseExceptionInterface extends ComponentExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class EscapingException extends \RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class MissingParameterException extends \RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class NotConnectedException extends \LogicException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class QueryFailureException extends \RuntimeException implements DatabaseExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Components\Database\Exception;
class TransactionException extends \RuntimeException implements DatabaseExceptionInterface
{
}