14 lines
242 B
PHP
Executable File
14 lines
242 B
PHP
Executable File
<?php
|
|
/**
|
|
* @file
|
|
*
|
|
* The top-level QueryPath exception.
|
|
*/
|
|
namespace QueryPath;
|
|
/**
|
|
* Exception indicating that a problem has occured inside of a QueryPath object.
|
|
*
|
|
* @ingroup querypath_core
|
|
*/
|
|
class Exception extends \Exception {}
|