diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-10 12:28:19 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-10 12:28:19 +0000 |
commit | abea356249129ec79d757b514781695b248dcb92 (patch) | |
tree | 8590f7eb233ce6a3503f3aae011327e4996b1c57 /src/exceptions | |
parent | 89cf5d2c835e6eaf88eeeacbd131e3e333089669 (diff) | |
download | zetacomponents-graph-abea356249129ec79d757b514781695b248dcb92.zip zetacomponents-graph-abea356249129ec79d757b514781695b248dcb92.tar.gz |
- Added basic tests for dataset creation
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/no_such_dataset.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/exceptions/no_such_dataset.php b/src/exceptions/no_such_dataset.php new file mode 100644 index 0000000..f417445 --- /dev/null +++ b/src/exceptions/no_such_dataset.php @@ -0,0 +1,21 @@ +<?php +/** + * File containing the ezcGraphNoSuchDatasetException 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 + */ +/** + * ezcGraphUnknownChartTypeException is the exception which is thrown when the + * factory method tries to return an instance of an unknown chart type + * + * @package Graph + * @version //autogen// + */ +class ezcGraphNoSuchDatasetException extends ezcBaseException +{ +} + +?> |