1 package com.griddynamics.jagger.user.test.configurations.load.aux;
9 private final long warmUpTimeInSeconds;
12 if (warmUpTimeInSeconds < 0) {
13 throw new IllegalArgumentException(
14 String.format(
"The warm up time value in seconds. must be >= 0. Provided value is %s",
18 this.warmUpTimeInSeconds = warmUpTimeInSeconds;
26 return warmUpTimeInSeconds;