moodle/lib/php-css-parser/Parsing/OutputException.php
Frederic Massart fbe18cc022 MDL-55224 core: Import PHP-CSS-Parser into core
Part of MDL-55071
2016-09-23 10:49:49 +01:00

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);
}
}