lib/doc: Fix code style for doc exceptions
This commit is contained in:
parent
828cb8d23a
commit
95c937e3fd
|
@ -6,4 +6,6 @@ namespace Icinga\Module\Doc\Exception;
|
|||
/**
|
||||
* Exception thrown if a chapter was not found
|
||||
*/
|
||||
class ChapterNotFoundException extends DocException {}
|
||||
class ChapterNotFoundException extends DocException
|
||||
{
|
||||
}
|
||||
|
|
|
@ -6,4 +6,6 @@ namespace Icinga\Module\Doc\Exception;
|
|||
/**
|
||||
* Exception thrown if a documentation directory is empty
|
||||
*/
|
||||
class DocEmptyException extends DocException {}
|
||||
class DocEmptyException extends DocException
|
||||
{
|
||||
}
|
||||
|
|
|
@ -8,4 +8,6 @@ use RuntimeException;
|
|||
/**
|
||||
* Exception thrown if an error in the documentation module's library occurs
|
||||
*/
|
||||
class DocException extends RuntimeException {}
|
||||
class DocException extends RuntimeException
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue