Package ghidra.app.util.bin.format.macho
Class MachException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- ghidra.app.util.bin.format.macho.MachException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
ObsoleteException
public class MachException extends java.lang.Exception
An exception class to handle encountering invalid Mach-O Headers.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MachException(java.lang.Exception cause)
Constructs a new exception with the specified cause and a detail message.MachException(java.lang.String message)
Constructs a new exception with the specified detail message.
-
-
-
Constructor Detail
-
MachException
public MachException(java.lang.String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
MachException
public MachException(java.lang.Exception cause)
Constructs a new exception with the specified cause and a detail message.- Parameters:
cause
- the cause (which is saved for later retrieval by the method
-
-