blob: 11aa0c238b6d75c24875bd1c545f8c2aaac96c91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* Base exception for the Graph package.
*
* @package Graph
* @version //autogentag//
* @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 //autogentag//
*/
abstract class ezcGraphException extends ezcBaseException
{
}
?>
|