| [ Index ] |
PHP Cross Reference of MantisBT |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * File containing the ezcGraphSvgDriverInvalidIdException class 4 * 5 * @package Graph 6 * @version 1.5 7 * @copyright Copyright (C) 2005-2009 eZ Systems AS. All rights reserved. 8 * @license http://ez.no/licenses/new_bsd New BSD License 9 */ 10 /** 11 * Exception thrown when a id could not be found in a SVG document to insert 12 * elements in. 13 * 14 * @package Graph 15 * @version 1.5 16 */ 17 class ezcGraphSvgDriverInvalidIdException extends ezcGraphException 18 { 19 /** 20 * Constructor 21 * 22 * @param string $id 23 * @return void 24 * @ignore 25 */ 26 public function __construct( $id ) 27 { 28 parent::__construct( "Could not find element with id '{$id}' in SVG document." ); 29 } 30 } 31 32 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Jul 28 15:48:31 2011 | Cross-referenced by PHPXref 0.7 |