summaryrefslogtreecommitdiffstats
path: root/src/exceptions/invalid_id.php
blob: d849f13593d9c7422be48d81ac206749fddf06bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
 * File containing the ezcGraphSvgDriverInvalidIdException class
 *
 * @package Graph
 * @version //autogen//
 * @copyright Copyright (C) 2005, 2006 eZ systems as. All rights reserved.
 * @license http://ez.no/licenses/new_bsd New BSD License
 */
/**
 * Exception thrown when a id could not be found in a SVG document to insert 
 * elements in.
 *
 * @package Graph
 * @version //autogen//
 */
class ezcGraphSvgDriverInvalidIdException extends ezcGraphException
{
    public function __construct( $id )
    {
        parent::__construct( "Could not find element with id <{$id}> in SVG document." );
    }
}

?>

OpenPOWER on IntegriCloud