Package ghidra.app.util.opinion
Class LoadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
ghidra.app.util.opinion.LoadException
- All Implemented Interfaces:
Serializable
Thrown when a
load
fails in an expected way. The supplied message should explain the reason.- See Also:
-
Constructor Summary
ConstructorDescriptionLoadException
(String message) Create a newLoadException
with the given messageLoadException
(String message, Throwable cause) Create a newLoadException
with the given message and causeLoadException
(Throwable cause) Create a newLoadException
with the given 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
-
LoadException
Create a newLoadException
with the given message- Parameters:
message
- The exception message
-
LoadException
Create a newLoadException
with the given message and cause- Parameters:
message
- The exception messagecause
- The exception cause
-
LoadException
Create a newLoadException
with the given cause- Parameters:
cause
- The exception cause
-