mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-21 15:10:13 +02:00
There are more exceptions to come which also will be beneath the `Exception' namespace. refs #4820
15 lines
241 B
PHP
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
|
|
{
|
|
}
|