*/ namespace oat\taoTests\models\runner\time; /** * Class InconsistentRangeException * * Thrown when a time range is inconsistent. * By example when the TimePoint do not have the same target or are not correctly positioned. * * @package oat\taoTests\models\runner\time */ class InconsistentRangeException extends TimeException { public function __construct($message = null, $code = 0, \Exception $previous = null) { if (!$message) { $message = 'A time range must be defined by two TimePoint with the same target and the START cannot be after the END!'; } parent::__construct($message, $code, $previous); } }