- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.ibm.dtfj.corereaders.DumpException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MemoryAccessException
public class DumpException extends Exception
This class is the superclass of all exceptions thrown by Dump classes- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DumpException(Dump dump, int asid, long address)
DumpException(Dump dump, int asid, long address, String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description long
getAddress()
int
getAddressSpaceId()
Dump
getDump()
-
Methods declared in class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Method Detail
-
getDump
public Dump getDump()
- Returns:
- the Dump where the exception was raised
-
getAddress
public long getAddress()
- Returns:
- the address in the addressSpaceId of the Dump where the exception was raised
-
getAddressSpaceId
public int getAddressSpaceId()
- Returns:
- the addressSpaceId of the Dump where the exception was raised
-
-