Package ghidra.app.util.bin.format.som
Class SomException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ghidra.app.util.bin.format.som.SomException
- All Implemented Interfaces:
Serializable
An exception class to handle encountering invalid SOM headers
- See Also:
-
Constructor Summary
ConstructorsChangeConstructorDescriptionSomException(Exception cause) Constructs a new exception with the specified cause and a detail messageSomException(String message) Constructs a new exception with the specified detail 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
-
SomException
Constructs a new exception with the specified detail message- Parameters:
message- the detail message
-
SomException
Constructs a new exception with the specified cause and a detail message- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method (anullvalue is permitted, and indicates that the cause is nonexistent or unknown).
-