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:
java.io.Serializable
public class SegmentMismatchException extends UsrException
SegmentMismatchException
is thrown when two addresses with different segments are used in an operation that requires the same segment.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SegmentMismatchException()
Constructs a SegmentMismatchException with no detail message.SegmentMismatchException(java.lang.String message)
Constructs a SegmentMismatchException with the specified detail message.
-
-
-
Constructor Detail
-
SegmentMismatchException
public SegmentMismatchException()
Constructs a SegmentMismatchException with no detail message.
-
SegmentMismatchException
public SegmentMismatchException(java.lang.String message)
Constructs a SegmentMismatchException with the specified detail message.
- Parameters:
message
- The message.
-
-