doc module: Move `DocException' beneath `Exception' namespace

There are more exceptions to come which also will be beneath the `Exception' namespace.

refs #4820
This commit is contained in:
Eric Lippmann 2014-06-30 15:18:22 +02:00
parent e73471030c
commit 93cc24a93a
1 changed files with 4 additions and 1 deletions

View File

@ -2,10 +2,13 @@
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
namespace Icinga\Module\Doc;
namespace Icinga\Module\Doc\Exception;
use Exception;
/**
* Exception thrown if an error in the documentation module occurs
*/
class DocException extends Exception
{
}