diff options
author | Kore Nordmann <github@kore-nordmann.de> | 2007-11-27 12:00:23 +0000 |
---|---|---|
committer | Kore Nordmann <github@kore-nordmann.de> | 2007-11-27 12:00:23 +0000 |
commit | f130ab5cb1155a0cda8725cbd1a52f7527acfada (patch) | |
tree | bc68f775c1d59eed1d834693ccc211cb580be4d2 /src/exceptions | |
parent | e5578da0740ae8fa7ff10207fbdd6aa38d7e4233 (diff) | |
download | zetacomponents-graph-f130ab5cb1155a0cda8725cbd1a52f7527acfada.zip zetacomponents-graph-f130ab5cb1155a0cda8725cbd1a52f7527acfada.tar.gz |
- It was not possible to cause this exception
Diffstat (limited to 'src/exceptions')
-rw-r--r-- | src/exceptions/invalid_font.php | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/src/exceptions/invalid_font.php b/src/exceptions/invalid_font.php deleted file mode 100644 index e9cc436..0000000 --- a/src/exceptions/invalid_font.php +++ /dev/null @@ -1,43 +0,0 @@ -<?php -/** - * File containing the ezcGraphInvalidFontTypeException class - * - * @package Graph - * @version //autogentag// - * @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved. - * @license http://ez.no/licenses/new_bsd New BSD License - */ -/** - * Exception thrown if font type cannot be rendered with one driver. - * - * @package Graph - * @version //autogentag// - */ -class ezcGraphInvalidFontTypeException extends ezcGraphException -{ - /** - * Constructor - * - * @param int $type - * @param string $driver - * @return void - * @ignore - */ - public function __construct( $type, $driver ) - { - $fontNames = array( - ezcGraph::TTF_FONT => 'True Type Font', - ezcGraph::PS_FONT => 'Postscript Type 1 font', - ezcGraph::PALM_FONT => 'Palm Font', - ); - - $fontName = ( isset( $fontNames[$type] ) - ? $fontName = $fontNames[$type] - : 'Unknown' - ); - - parent::__construct( "Font type '{$fontName}' cannot be used with '{$driver}'." ); - } -} - -?> |