diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2006-11-03 14:20:22 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2006-11-03 14:20:22 +0000 |
commit | 6bcfb0ef5935517d69cd6ccd46b27d92caa3656d (patch) | |
tree | edb806ced557a832dcfa962f3f28b598e15aad81 /src/exceptions | |
parent | 3b4a92fb2b5e181c4aa7a57c67aa17812526b398 (diff) | |
download | zetacomponents-graph-6bcfb0ef5935517d69cd6ccd46b27d92caa3656d.zip zetacomponents-graph-6bcfb0ef5935517d69cd6ccd46b27d92caa3656d.tar.gz |
- Added logarithmical scaled numeric axis
- Added mojor grid color in ez palettes
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/out_of_logarithmical_boundings.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/exceptions/out_of_logarithmical_boundings.php b/src/exceptions/out_of_logarithmical_boundings.php new file mode 100644 index 0000000..b444427 --- /dev/null +++ b/src/exceptions/out_of_logarithmical_boundings.php @@ -0,0 +1,25 @@ +<?php +/** + * File containing the ezcGraphOutOfLogithmicalBoundingsException 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 data exceeds the values which are displayable on an + * logarithmical scaled axis. + * + * @package Graph + * @version //autogen// + */ +class ezcGraphOutOfLogithmicalBoundingsException extends ezcGraphException +{ + public function __construct( $minimum ) + { + parent::__construct( "Data exceeds displayable values on a logarithmical scaled axis." ); + } +} + +?> |