Initial xentral_oss_20.3.c9ffacf
This commit is contained in:
@@ -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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user