diff --git a/modules/doc/library/Doc/Exception/DocException.php b/modules/doc/library/Doc/Exception/DocException.php index f684f1faa..374ea3e01 100644 --- a/modules/doc/library/Doc/Exception/DocException.php +++ b/modules/doc/library/Doc/Exception/DocException.php @@ -4,11 +4,9 @@ namespace Icinga\Module\Doc\Exception; -use Exception; +use RuntimeException; /** - * Exception thrown if an error in the documentation module occurs + * Exception thrown if an error in the documentation module's library occurs */ -class DocException extends Exception -{ -} +class DocException extends RuntimeException {}