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