Skip to content

Commit 6775b97

Browse files
authored
[TASK] Drop redundant OutputException constructor (#925)
1 parent 8f8fe75 commit 6775b97

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

src/Parsing/OutputException.php

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,4 @@
77
/**
88
* Thrown if the CSS parser attempts to print something invalid.
99
*/
10-
final class OutputException extends SourceException
11-
{
12-
/**
13-
* @param int<0, max> $lineNumber
14-
*/
15-
public function __construct(string $sMessage, int $lineNumber = 0)
16-
{
17-
parent::__construct($sMessage, $lineNumber);
18-
}
19-
}
10+
final class OutputException extends SourceException {}

0 commit comments

Comments
 (0)