diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-05-08 14:27:28 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-05-08 14:27:28 +0000 |
commit | 9769309977ce189b5ffc68a850c7e03b1928f8b1 (patch) | |
tree | d85738db57b6c782988d47ab0f163246275b640b /src/exceptions | |
parent | 3cb43e5989e313fdf863022de77f5a8464651ec9 (diff) | |
download | zetacomponents-graph-9769309977ce189b5ffc68a850c7e03b1928f8b1.zip zetacomponents-graph-9769309977ce189b5ffc68a850c7e03b1928f8b1.tar.gz |
- Fixed issue #10741: Make ezcGraphOutOfLogithmicalBoundingsException more
descriptive
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/out_of_logarithmical_boundings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exceptions/out_of_logarithmical_boundings.php b/src/exceptions/out_of_logarithmical_boundings.php index fd1a64e..12418ed 100644 --- a/src/exceptions/out_of_logarithmical_boundings.php +++ b/src/exceptions/out_of_logarithmical_boundings.php @@ -18,7 +18,7 @@ class ezcGraphOutOfLogithmicalBoundingsException extends ezcGraphException { public function __construct( $minimum ) { - parent::__construct( "Data exceeds displayable values on a logarithmical scaled axis." ); + parent::__construct( "Value '$minimum' exceeds displayable values on a logarithmical scaled axis." ); } } |