diff options
Diffstat (limited to 'src/exceptions/reducement_failed.php')
-rw-r--r-- | src/exceptions/reducement_failed.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/exceptions/reducement_failed.php b/src/exceptions/reducement_failed.php new file mode 100644 index 0000000..f14e88d --- /dev/null +++ b/src/exceptions/reducement_failed.php @@ -0,0 +1,25 @@ +<?php +/** + * File containing the ezcGraphReducementFailedException class + * + * @package Graph + * @version //autogen// + * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. + * @license http://ez.no/licenses/new_bsd New BSD License + */ +/** + * Exception thrown when a requested reducement of an ellipse or polygone + * failed because the shape was already too small. + * + * @package Graph + * @version //autogen// + */ +class ezcGraphReducementFailedException extends ezcGraphException +{ + public function __construct() + { + parent::__construct( "Reducement of shape failed, because it was already too small." ); + } +} + +?> |