monitoring/commands: Add `TransportException'

`TransportException' should be thrown if a command was not sent.

refs #6593
This commit is contained in:
Eric Lippmann 2014-08-29 15:14:53 +02:00
parent 249099348e
commit 6fdc436f65
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Monitoring\Command\Exception;
use Icinga\Exception\IcingaException;
/**
* Exception thrown if a command was not sent
*/
class TransportException extends IcingaException {}