mirror of
https://github.com/Icinga/icingadb-web.git
synced 2026-03-02 05:13:33 -05:00
15 lines
265 B
PHP
15 lines
265 B
PHP
|
|
<?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 successful
|
||
|
|
*/
|
||
|
|
class ApiCommandException extends IcingaException
|
||
|
|
{
|
||
|
|
}
|