lib/doc: Fix code style for doc exceptions

This commit is contained in:
Eric Lippmann 2015-02-06 17:24:01 +01:00
parent 828cb8d23a
commit 95c937e3fd
3 changed files with 9 additions and 3 deletions

View File

@ -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
{
}

View File

@ -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
{
}

View File

@ -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
{
}