Eric Lippmann 93cc24a93a doc module: Move DocException' beneath Exception' namespace
There are more exceptions to come which also will be beneath the `Exception' namespace.

refs #4820
2014-06-30 15:18:22 +02:00

15 lines
241 B
PHP

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Doc\Exception;
use Exception;
/**
* Exception thrown if an error in the documentation module occurs
*/
class DocException extends Exception
{
}