for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DoctrineDatatable\Exception;
/**
* Class UnfilterableColumn.
*
* @author Mathieu Petrini <[email protected]>
* @codeCoverageIgnore
*/
class UnfilterableColumn extends \Exception
{
* UnfilterableColumn constructor.
* @param int $code
* @param \Throwable|null $previous
public function __construct($code = 0, \Throwable $previous = null)
parent::__construct(
'This column cannot be filtered.',
$code,
$previous
);
}