Skip to content

Commit c826324

Browse files
committed
Do not mark the exceptions as internal anymore
1 parent c7316cf commit c826324

File tree

4 files changed

+0
-9
lines changed

4 files changed

+0
-9
lines changed

src/Parsing/OutputException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
/**
88
* Thrown if the CSS parser attempts to print something invalid.
9-
*
10-
* @internal
119
*/
1210
class OutputException extends SourceException
1311
{

src/Parsing/SourceException.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44

55
namespace Sabberworm\CSS\Parsing;
66

7-
/**
8-
* @internal
9-
*/
107
class SourceException extends \Exception
118
{
129
/**

src/Parsing/UnexpectedEOFException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,5 @@
88
* Thrown if the CSS parser encounters end of file it did not expect.
99
*
1010
* Extends `UnexpectedTokenException` in order to preserve backwards compatibility.
11-
*
12-
* @internal
1311
*/
1412
class UnexpectedEOFException extends UnexpectedTokenException {}

src/Parsing/UnexpectedTokenException.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
/**
88
* Thrown if the CSS parser encounters a token it did not expect.
9-
*
10-
* @internal
119
*/
1210
class UnexpectedTokenException extends SourceException
1311
{

0 commit comments

Comments
 (0)