OpenXE/classes/Widgets/DataTable/Exception/DataTableException.php
2021-05-21 08:49:41 +02:00

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));
}*/
}