1 package com.griddynamics.jagger.user.test.configurations.termination.auxiliary;
7 private final long maxDurationInSeconds;
10 if (maxDurationInSeconds <= 0) {
11 throw new IllegalArgumentException(
12 String.format(
"Max duration in seconds must be > 0. Provided value is %s", maxDurationInSeconds));
14 this.maxDurationInSeconds = maxDurationInSeconds;
22 return maxDurationInSeconds;