diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-05-10 15:47:46 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-05-10 15:47:46 +0000 |
commit | 9b1f82b08a5fb5b6cbc6f8f478dd987df9b02053 (patch) | |
tree | 01b6027151314286e051f07ae7ce29f98856c3f2 /src/exceptions | |
parent | abea356249129ec79d757b514781695b248dcb92 (diff) | |
download | zetacomponents-graph-9b1f82b08a5fb5b6cbc6f8f478dd987df9b02053.zip zetacomponents-graph-9b1f82b08a5fb5b6cbc6f8f478dd987df9b02053.tar.gz |
- Added tests to retrieve and set single data in datasets
- Implemented datasets as far as tested
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/no_such_data.php | 21 | ||||
-rw-r--r-- | src/exceptions/too_many_datasets.php | 21 | ||||
-rw-r--r-- | src/exceptions/unknown_dataset_source.php | 21 |
3 files changed, 63 insertions, 0 deletions
diff --git a/src/exceptions/no_such_data.php b/src/exceptions/no_such_data.php new file mode 100644 index 0000000..dd73c0f --- /dev/null +++ b/src/exceptions/no_such_data.php @@ -0,0 +1,21 @@ +<?php +/** + * File containing the ezcGraphNoSuchDataException 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 ezcGraphNoSuchDataException extends ezcBaseException +{ +} + +?> diff --git a/src/exceptions/too_many_datasets.php b/src/exceptions/too_many_datasets.php new file mode 100644 index 0000000..65cbd0d --- /dev/null +++ b/src/exceptions/too_many_datasets.php @@ -0,0 +1,21 @@ +<?php +/** + * File containing the ezcGraphTooManyDatasetsExceptions 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 ezcGraphTooManyDatasetsExceptions extends ezcBaseException +{ +} + +?> diff --git a/src/exceptions/unknown_dataset_source.php b/src/exceptions/unknown_dataset_source.php new file mode 100644 index 0000000..e3d359e --- /dev/null +++ b/src/exceptions/unknown_dataset_source.php @@ -0,0 +1,21 @@ +<?php +/** + * File containing the ezcGraphUnknownDatasetSourceException 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 ezcGraphUnknownDatasetSourceException extends ezcBaseException +{ +} + +?> |