blob: 533f5082799424353960bd38ef792b998583f18b [file]
<?php
/**
* File containing the ezcGraphInvalidStepSizeException 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 the major or minor step size does not divide cleanly
* the value span it should be used for.
*
* @package Graph
* @version //autogentag//
*/
class ezcGraphInvalidStepSizeException extends ezcGraphException
{
/**
* Constructor
*
* @param string $message
* @return void
* @ignore
*/
public function __construct( $message )
{
parent::__construct( "Invalid step size on numeric axis: {$message}." );
}
}
?>