summaryrefslogtreecommitdiffstats
path: root/src/exceptions/font_type.php
blob: a5aef5527d573fcc63613c523aceef351d8481c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * File containing the ezcGraphUnknownFontTypeException 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 if font type is unknown or not supported.
 *
 * @package Graph
 * @version //autogen//
 */
class ezcGraphUnknownFontTypeException extends ezcGraphException
{
    /**
     * Constructor
     * 
     * @param string $file
     * @param string $extension
     * @return void
     * @ignore
     */
    public function __construct( $file, $extension )
    {
        parent::__construct( "Unknown font type '{$extension}' of file '{$file}'." );
    }
}

?>
OpenPOWER on IntegriCloud