Code/net/minecraft/gametest/framework/ExhaustedAttemptsException....

18 lines
580 B
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.gametest.framework;
class ExhaustedAttemptsException extends Throwable {
public ExhaustedAttemptsException(int p_177039_, int p_177040_, GameTestInfo p_177041_) {
super(
"Not enough successes: "
+ p_177040_
+ " out of "
+ p_177039_
+ " attempts. Required successes: "
+ p_177041_.requiredSuccesses()
+ ". max attempts: "
+ p_177041_.maxAttempts()
+ ".",
p_177041_.getError()
);
}
}