summaryrefslogtreecommitdiff
path: root/src/main/java/ftbsc/lll/exception/InstructionMismatchException.java
blob: 7dda1e692d3826690ca7de515eabc84ba113d769 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package ftbsc.lll.exception;

/**
 * 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);
   }
}