blob: 2ca89d9dd5fc0058e077edec4a66b784c07b75d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Command\Transport;
use Icinga\Exception\IcingaException;
/**
* Exception thrown if a command was not sent
*/
class CommandTransportException extends IcingaException
{
}
|