16 lines
228 B
PHP
Executable File
16 lines
228 B
PHP
Executable File
<?php
|
|
/**
|
|
* @file
|
|
*
|
|
* The CSS parsing exception class.
|
|
*/
|
|
|
|
namespace QueryPath\CSS;
|
|
|
|
/**
|
|
* Exception indicating an error in CSS parsing.
|
|
*
|
|
* @ingroup querypath_css
|
|
*/
|
|
class ParseException extends \QueryPath\Exception {}
|