Package ghidra.program.model.address
Class SegmentMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.address.SegmentMismatchException
- All Implemented Interfaces:
Serializable
SegmentMismatchException
is thrown when two
addresses with different segments are used in an operation
that requires the same segment.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a SegmentMismatchException with no detail message.SegmentMismatchException
(String message) Constructs a SegmentMismatchException with the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SegmentMismatchException
public SegmentMismatchException()Constructs a SegmentMismatchException with no detail message.
-
SegmentMismatchException
Constructs a SegmentMismatchException with the specified detail message.
- Parameters:
message
- The message.
-