blob: b9e0d05e916778ae01666b5cbace664c4f4c5bfb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package ftbsc.lll.exceptions;
/**
* Thrown when attempting to build an {@link ftbsc.lll.tools.InsnSequence} between two
* unconnected nodes.
*/
public class InstructionMismatchException extends RuntimeException {
public InstructionMismatchException(String message) {
super(message);
}
public InstructionMismatchException(String message, Throwable cause) {
super(message, cause);
}
public InstructionMismatchException(Throwable cause) {
super(cause);
}
}
|