mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-16 04:57:15 +01:00
19 lines
405 B
PHP
19 lines
405 B
PHP
<?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));
|
|
}*/
|
|
}
|