/
home
/
sjslayjy
/
public_html
/
tabson
/
vendor
/
sabberworm
/
php-css-parser
/
lib
/
Sabberworm
/
CSS
/
Parsing
/
Upload File
HOME
<?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); } }