diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 12:22:35 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-06-06 12:22:35 +0000 |
commit | c925b7cbd916a294e96d361585c396cd107a827e (patch) | |
tree | 6ceee293182e603f560fda96b6177f9ac0b20751 /src/exceptions | |
parent | a1cf00931ec31b6c7c45ecd182b410c6e7cf4781 (diff) | |
download | zetacomponents-graph-c925b7cbd916a294e96d361585c396cd107a827e.zip zetacomponents-graph-c925b7cbd916a294e96d361585c396cd107a827e.tar.gz |
- Added test for palettes
- Added basic implementatoin of palettes
# Not used for automatic colorization yet
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/unknown_palette.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/exceptions/unknown_palette.php b/src/exceptions/unknown_palette.php new file mode 100644 index 0000000..970c45b --- /dev/null +++ b/src/exceptions/unknown_palette.php @@ -0,0 +1,21 @@ +<?php +/** + * File containing the ezcGraphUnknownPaletteException 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 + */ +/** + * ezcGraphUnknownPaletteException 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 ezcGraphUnknownPaletteException extends ezcBaseException +{ +} + +?> |