*/ namespace oat\taoTests\models\runner\time; /** * Class InconsistentRangeException * * Thrown when a time range is malformed * * @package oat\taoTests\models\runner\time */ class MalformedRangeException extends TimeException { public function __construct($message = null, $code = 0, \Exception $previous = null) { if (!$message) { $message = 'A time range must be defined by a START and a END TimePoint!'; } parent::__construct($message, $code, $previous); } }