blob: 7f3fe8368e458c9c0260bf01dcba79e5724ac860 (
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 InstructionSequence 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);
}
}
|