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,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use RuntimeException;
class BuildFailedException extends RuntimeException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,12 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use RuntimeException;
/**
* Wenn bereits eine Column mit diesem Name existiert; Namen wüssen einmalig sein
*/
class ColumnNameAssignedException extends RuntimeException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use RuntimeException;
class ColumnNotFoundException extends RuntimeException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,18 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use RuntimeException;
class DataTableException extends RuntimeException implements DataTableExceptionInterface
{
/**
* @param string $columnName
*
* @return DataTableException
*/
/*public static function columnNotFound($columnName)
{
return new self(sprintf('Column "%s" not found.', $columnName));
}*/
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use Xentral\Core\Exception\WidgetExceptionInterface;
interface DataTableExceptionInterface extends WidgetExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
class FeatureExistsException extends \RuntimeException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use LogicException;
class FeatureIncompatibleException extends LogicException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,7 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
class FeatureNotFoundException extends \InvalidArgumentException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use LogicException;
class FeatureNotImplementedException extends LogicException implements DataTableExceptionInterface
{
}
@@ -0,0 +1,9 @@
<?php
namespace Xentral\Widgets\DataTable\Exception;
use InvalidArgumentException as SplInvalidArgumentException;
class InvalidArgumentException extends SplInvalidArgumentException implements DataTableExceptionInterface
{
}