From 377685d8024c8cd6e563a0eb4c79515b6f0b9053 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 10 Feb 2015 17:04:46 +0100 Subject: [PATCH] doc/lib: Let DocException extend IcingaException --- modules/doc/library/Doc/Exception/DocException.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/doc/library/Doc/Exception/DocException.php b/modules/doc/library/Doc/Exception/DocException.php index f749fb7b3..c7d895261 100644 --- a/modules/doc/library/Doc/Exception/DocException.php +++ b/modules/doc/library/Doc/Exception/DocException.php @@ -3,11 +3,11 @@ namespace Icinga\Module\Doc\Exception; -use RuntimeException; +use Icinga\Exception\IcingaException; /** * Exception thrown if an error in the documentation module's library occurs */ -class DocException extends RuntimeException +class DocException extends IcingaException { }