FilterException: extend IcingaException

refs #6931
This commit is contained in:
Alexander Klimov 2014-08-27 16:23:44 +02:00
parent 45638b218c
commit afd0c20c42
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@
namespace Icinga\Data\Filter;
use Exception;
use Icinga\Exception\IcingaException;
/**
* Filter Exception Class
*
* Filter Exceptions should be thrown on filter parse errors or similar
*/
class FilterException extends Exception {}
class FilterException extends IcingaException {}