lib: Add AlreadyExistsException

This commit is contained in:
Eric Lippmann 2015-08-27 13:56:24 +02:00
parent fd8b5ec510
commit c5d0094e8e
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<?php
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | GPLv2+ */
namespace Icinga\Exception;
/**
* Exception thrown if something to add already exists
*/
class AlreadyExistsException extends IcingaException
{
}