blob: 04fd4b684d0a7cdc5164cd0a060c16f7b8cf2e78 [file] [log] [blame]
<?php
/**
* File containing the ezcGraphFlashBitmapTypeException class
*
* @package Graph
* @version //autogentag//
* @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved.
* @license http://ez.no/licenses/new_bsd New BSD License
*/
/**
* Flash can only embed JPEGs and PNGs. 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 JPEGs and PNGs." );
}
}
?>