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
ConstructorsConstructorDescriptionLoadException(String message) Create a newLoadExceptionwith the given messageLoadException(String message, Throwable cause) Create a newLoadExceptionwith the given message and causeLoadException(Throwable cause) Create a newLoadExceptionwith 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 newLoadExceptionwith the given message- Parameters:
message- The exception message
-
LoadException
Create a newLoadExceptionwith the given message and cause- Parameters:
message- The exception messagecause- The exception cause
-
LoadException
Create a newLoadExceptionwith the given cause- Parameters:
cause- The exception cause
-