Skip to content

Commit

Permalink
Do not mark the exceptions as internal anymore
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Sep 5, 2024
1 parent c7316cf commit c826324
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 9 deletions.
2 changes: 0 additions & 2 deletions src/Parsing/OutputException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

/**
* Thrown if the CSS parser attempts to print something invalid.
*
* @internal
*/
class OutputException extends SourceException
{
Expand Down
3 changes: 0 additions & 3 deletions src/Parsing/SourceException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@

namespace Sabberworm\CSS\Parsing;

/**
* @internal
*/
class SourceException extends \Exception
{
/**
Expand Down
2 changes: 0 additions & 2 deletions src/Parsing/UnexpectedEOFException.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,5 @@
* Thrown if the CSS parser encounters end of file it did not expect.
*
* Extends `UnexpectedTokenException` in order to preserve backwards compatibility.
*
* @internal
*/
class UnexpectedEOFException extends UnexpectedTokenException {}
2 changes: 0 additions & 2 deletions src/Parsing/UnexpectedTokenException.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@

/**
* Thrown if the CSS parser encounters a token it did not expect.
*
* @internal
*/
class UnexpectedTokenException extends SourceException
{
Expand Down

0 comments on commit c826324

Please sign in to comment.