Package ghidra.program.model.util
Class DeletedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.program.model.util.DeletedException
- All Implemented Interfaces:
Serializable
Exception thrown when program object being accessed has been deleted.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new DeletedException with a default message.DeletedException
(String msg) Constructs a new DeletedException with a given 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
-
DeletedException
public DeletedException()Constructs a new DeletedException with a default message. -
DeletedException
Constructs a new DeletedException with a given message.- Parameters:
msg
- the message for the exception.
-