Package com.ibm.ws.ffdc

This package provides facilities to write first failure data capture (FFDC) records to assist in debugging problems.

See:
          Description

Interface Summary
FFDCSelfIntrospectable This interface is for objects that have sensitive member data in them.
IncidentStream  
 

Class Summary
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 Summary
DiagnosticModuleRegistrationFailureException  
 

Package com.ibm.ws.ffdc Description

This package provides facilities to write first failure data capture (FFDC) records to assist in debugging problems. Typical use of this facility is through the static methods on the 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;
 }