java.lang.Object
java.lang.Throwable
java.lang.Exception
com.ibm.j9ddr.CorruptDataException
com.ibm.j9ddr.AddressedCorruptDataException
com.ibm.j9ddr.corereaders.memory.MemoryFault
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NullPointerDereference
Exception class representing a memory fault (GPF)
- See Also:
-
Field Summary
Fields declared in class com.ibm.j9ddr.AddressedCorruptDataException
address -
Constructor Summary
ConstructorsConstructorDescriptionMemoryFault(long address) MemoryFault(long address, String message) MemoryFault(long address, String message, Throwable t) MemoryFault(long address, Throwable t) -
Method Summary
Methods declared in class com.ibm.j9ddr.AddressedCorruptDataException
getAddressMethods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MemoryFault
public MemoryFault(long address) - Parameters:
address- Address that caused fault
-
MemoryFault
- Parameters:
address- Address that caused faultmessage- Exception message
-
MemoryFault
- Parameters:
address- Address that caused faultt- Underlying throwable that caused memory fault
-
MemoryFault
- Parameters:
address- Address that caused faultmessage- Exception messaget- Underlying throwable that caused memory fault
-