2014-02-11 09:27:42 -05:00
|
|
|
<?php
|
2015-02-03 09:49:34 -05:00
|
|
|
/* Icinga Web 2 | (c) 2013-2015 Icinga Development Team | http://www.gnu.org/licenses/gpl-2.0.txt */
|
2014-02-11 09:27:42 -05:00
|
|
|
|
2014-06-30 09:18:22 -04:00
|
|
|
namespace Icinga\Module\Doc\Exception;
|
2014-02-11 09:27:42 -05:00
|
|
|
|
2014-07-28 12:53:41 -04:00
|
|
|
use RuntimeException;
|
2014-02-11 09:27:42 -05:00
|
|
|
|
2014-06-30 09:18:22 -04:00
|
|
|
/**
|
2014-07-28 12:53:41 -04:00
|
|
|
* Exception thrown if an error in the documentation module's library occurs
|
2014-06-30 09:18:22 -04:00
|
|
|
*/
|
2014-07-28 12:53:41 -04:00
|
|
|
class DocException extends RuntimeException {}
|