summaryrefslogtreecommitdiffstats
path: root/src/exceptions
diff options
context:
space:
mode:
authorKore Nordmann <github@kore-nordmann.de>2006-11-03 14:20:22 +0000
committerKore Nordmann <github@kore-nordmann.de>2006-11-03 14:20:22 +0000
commit6bcfb0ef5935517d69cd6ccd46b27d92caa3656d (patch)
treeedb806ced557a832dcfa962f3f28b598e15aad81 /src/exceptions
parent3b4a92fb2b5e181c4aa7a57c67aa17812526b398 (diff)
downloadzetacomponents-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.php25
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." );
+ }
+}
+
+?>
OpenPOWER on IntegriCloud