blob: 5449a7da300e6ad585486516fd85098b42445c65 (
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 successful
*/
class ApiCommandException extends IcingaException
{
}
|