Skip to content

Commit 605205e

Browse files
author
Martin Brecht-Precht
committed
Added ParserExceptions.
1 parent 280b705 commit 605205e

File tree

4 files changed

+54
-0
lines changed

4 files changed

+54
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
namespace CommonException\ParserException\Base;
4+
5+
use CommonException\Base;
6+
7+
/**
8+
* Class ParserException
9+
*
10+
* @package CommonException\ParserException\Base
11+
*/
12+
class ParserException extends Base\BaseException
13+
{
14+
15+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace CommonException\ParserException;
4+
5+
/**
6+
* Class ParseException
7+
*
8+
* @package CommonException\ParserException
9+
*/
10+
class ParseException extends Base\ParserException
11+
{
12+
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace CommonException\ParserException;
4+
5+
/**
6+
* Class SerializeException
7+
*
8+
* @package CommonException\ParserException
9+
*/
10+
class SerializeException extends Base\ParserException
11+
{
12+
13+
}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace CommonException\ParserException;
4+
5+
/**
6+
* Class StringifyException
7+
*
8+
* @package CommonException\ParserException
9+
*/
10+
class StringifyException extends Base\ParserException
11+
{
12+
13+
}

0 commit comments

Comments
 (0)