Package ghidra.app.script
Class GhidraScriptLoadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.util.exception.UsrException
ghidra.app.script.GhidraScriptLoadException
- All Implemented Interfaces:
Serializable
An exception for when a script provider cannot create a script instance
- See Also:
-
Constructor Summary
ConstructorDescriptionGhidraScriptLoadException
(String message) Construct an exception with a messageGhidraScriptLoadException
(String message, Throwable cause) Construct an exception with a custom message and causeConstruct an exception with a 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
-
GhidraScriptLoadException
Construct an exception with a custom message and causeNote that the error message displayed to the user does not automatically include details from the cause. The client must provide details from the cause in the message as needed.
- Parameters:
message
- the error message including details and possible remediescause
- the exception causing this one
-
GhidraScriptLoadException
Construct an exception with a message- Parameters:
message
- the error message including details and possible remedies
-
GhidraScriptLoadException
Construct an exception with a causeThis will copy the cause's message into this exception's message.
- Parameters:
cause
- the exception causing this one
-