See: Description
Interface | Description |
---|---|
FFDCSelfIntrospectable |
This interface is for objects that want to have control of how they are
dumped in the FFDC report.
|
IncidentStream |
Class | Description |
---|---|
DiagnosticModule |
Extend this class to create a diagnostic module to help FFDC capture and dump
data for your component.
|
FFDC | |
FFDCConfigurator |
Configurator: Uses a LogProvider configuration to initialize the FFDC service.
|
FFDCFilter |
This class provides static methods to write first failure data capture (FFDC) records
to assist in debugging problems.
|
Exception | Description |
---|---|
DiagnosticModuleRegistrationFailureException |
FFDCFilter
class, to write information when an unexpected
exception has been caught; for example:
catch (Exception x) {
FFDCFilter.processException(x, getClass().getName(), "129", this);
throw x;
}