doc/lib: Let DocException extend IcingaException

This commit is contained in:
Eric Lippmann 2015-02-10 17:04:46 +01:00
parent c95838a33d
commit 377685d802

View File

@ -3,11 +3,11 @@
namespace Icinga\Module\Doc\Exception; namespace Icinga\Module\Doc\Exception;
use RuntimeException; use Icinga\Exception\IcingaException;
/** /**
* Exception thrown if an error in the documentation module's library occurs * Exception thrown if an error in the documentation module's library occurs
*/ */
class DocException extends RuntimeException class DocException extends IcingaException
{ {
} }