Skip to content

Commit

Permalink
Added ParserExceptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Brecht-Precht committed May 2, 2016
1 parent 280b705 commit 605205e
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/ParserException/Base/ParserException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

namespace CommonException\ParserException\Base;

use CommonException\Base;

/**
* Class ParserException
*
* @package CommonException\ParserException\Base
*/
class ParserException extends Base\BaseException
{

}
13 changes: 13 additions & 0 deletions src/ParserException/ParseException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CommonException\ParserException;

/**
* Class ParseException
*
* @package CommonException\ParserException
*/
class ParseException extends Base\ParserException
{

}
13 changes: 13 additions & 0 deletions src/ParserException/SerializeException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CommonException\ParserException;

/**
* Class SerializeException
*
* @package CommonException\ParserException
*/
class SerializeException extends Base\ParserException
{

}
13 changes: 13 additions & 0 deletions src/ParserException/StringifyException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CommonException\ParserException;

/**
* Class StringifyException
*
* @package CommonException\ParserException
*/
class StringifyException extends Base\ParserException
{

}

0 comments on commit 605205e

Please sign in to comment.