mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 05:09:28 +00:00
21 lines
391 B
PHP
21 lines
391 B
PHP
<?php
|
|
/**
|
|
* Base exception for the Graph package.
|
|
*
|
|
* @package Graph
|
|
* @version 1.3
|
|
* @copyright Copyright (C) 2005-2008 eZ systems as. All rights reserved.
|
|
* @license http://ez.no/licenses/new_bsd New BSD License
|
|
*/
|
|
|
|
/**
|
|
* General exception container for the Graph component.
|
|
*
|
|
* @package Graph
|
|
* @version 1.3
|
|
*/
|
|
abstract class ezcGraphException extends ezcBaseException
|
|
{
|
|
}
|
|
?>
|