mirror of
https://github.com/moodle/moodle.git
synced 2025-05-06 16:26:08 +02:00
12 lines
265 B
PHP
12 lines
265 B
PHP
<?php
|
|
|
|
namespace Sabberworm\CSS\Parsing;
|
|
|
|
/**
|
|
* Thrown if the CSS parsers attempts to print something invalid
|
|
*/
|
|
class OutputException extends SourceException {
|
|
public function __construct($sMessage, $iLineNo = 0) {
|
|
parent::__construct($sMessage, $iLineNo);
|
|
}
|
|
} |