Package ftbsc.lll.exceptions
Class InstructionMismatchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ftbsc.lll.exceptions.InstructionMismatchException
-
- All Implemented Interfaces:
java.io.Serializable
public class InstructionMismatchException extends java.lang.RuntimeException
Thrown when attempting to build anInsnSequence
between two unconnected nodes.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InstructionMismatchException(java.lang.String message)
Constructs a new instruction mismatch exception with the specified detail message.InstructionMismatchException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instruction mismatch exception with the specified detail message and cause.InstructionMismatchException(java.lang.Throwable cause)
Constructs a new instruction mismatch exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
-
-
-
Constructor Detail
-
InstructionMismatchException
public InstructionMismatchException(java.lang.String message)
Constructs a new instruction mismatch exception with the specified detail message.- Parameters:
message
- the detail message
-
InstructionMismatchException
public InstructionMismatchException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instruction mismatch exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause, may be null (indicating nonexistent or unknown cause)
-
InstructionMismatchException
public InstructionMismatchException(java.lang.Throwable cause)
Constructs a new instruction mismatch exception with the specified cause and a detail message of(cause==null ? null : cause.toString())
- Parameters:
cause
- the cause, may be null (indicating nonexistent or unknown cause)
-
-