summaryrefslogtreecommitdiffstats
path: root/src/exceptions/flash_bitmap_type.php
blob: 1e0e850a97db08a209dd9e4f8cc9e318471cb87d (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
<?php
/**
 * File containing the ezcGraphFlashBitmapTypeException 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
 */
/**
 * Flash can only read non interlaced bitmaps. This exception is thrown for 
 * all other image types.
 *
 * @package Graph
 * @version //autogentag//
 */
class ezcGraphFlashBitmapTypeException extends ezcGraphException
{
    /**
     * Constructor
     * 
     * @return void
     * @ignore
     */
    public function __construct()
    {
        parent::__construct( "Flash can only read non interlaced JPEGs." );
    }
}

?>
OpenPOWER on IntegriCloud