SetupException: Provide a default exception message

This commit is contained in:
Johannes Meyer 2015-07-31 11:06:01 +02:00
parent 16e54d3987
commit c5b5d3c9c3
1 changed files with 7 additions and 0 deletions

View File

@ -12,4 +12,11 @@ use Icinga\Exception\IcingaException;
*/
class SetupException extends IcingaException
{
/**
* {@inheritdoc}
*/
public function __construct()
{
parent::__construct('Setup abortion');
}
}