icingaweb2/modules/monitoring/library/Monitoring/Exception/UnsupportedBackendException.php
Alexander Klimov 7ff51caed0 Remove leading backslashes from the targets of use statements
- use \Exception;
+ use Exception;
2014-08-27 15:51:49 +02:00

11 lines
187 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Exception;
use Exception;
class UnsupportedBackendException extends Exception
{
}