Package ghidra.program.model.mem
Class MemoryAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.program.model.mem.MemoryAccessException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MemoryBlockException
An MemoryAccessException indicates that the attempted memory access is not permitted. (i.e. Readable/Writeable)
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs an MemoryAccessException with no detail message.MemoryAccessException
(String message) Constructs an MemoryAccessException with the specified detail message.MemoryAccessException
(String msg, Throwable cause) Creates aMemoryAccessException
with a message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MemoryAccessException
public MemoryAccessException()Constructs an MemoryAccessException with no detail message.
-
MemoryAccessException
Constructs an MemoryAccessException with the specified detail message.
- Parameters:
message
- The message.
-
MemoryAccessException
Creates aMemoryAccessException
with a message and cause.- Parameters:
msg
- messagecause
- nested cause
-