blob: b651b3903cf84437e16e9be37b4ab2e25c742773 [file] [log] [blame]
<?php
/**
* File containing the ezcGraphUnknownColorDefinitionException 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
*/
/**
* Exception thrown, when a given value could not be interpreted as a color by
* {@link ezcGraphColor}.
*
* @package Graph
* @version //autogentag//
*/
class ezcGraphUnknownColorDefinitionException extends ezcGraphException
{
/**
* Constructor
*
* @param mixed $definition
* @return void
* @ignore
*/
public function __construct( $definition )
{
parent::__construct( "Unknown color definition '{$definition}'." );
}
}
?>