File size: 580 Bytes
d46f4a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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()
        );
    }
}