minecraft-src/net/minecraft/gametest/framework/ExhaustedAttemptsException.java
2025-07-04 01:41:11 +03:00

18 lines
469 B
Java

package net.minecraft.gametest.framework;
class ExhaustedAttemptsException extends Throwable {
public ExhaustedAttemptsException(int madeAttempts, int successfulAttempts, GameTestInfo testInfo) {
super(
"Not enough successes: "
+ successfulAttempts
+ " out of "
+ madeAttempts
+ " attempts. Required successes: "
+ testInfo.requiredSuccesses()
+ ". max attempts: "
+ testInfo.maxAttempts()
+ ".",
testInfo.getError()
);
}
}