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

?>
OpenPOWER on IntegriCloud