@Version(value="1.0")

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 
    Interface Description
    FFDCSelfIntrospectable
    This interface is for objects that want to have control of how they are dumped in the FFDC report.
    IncidentStream  
  • Class Summary 
    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 Summary 
    Exception Description
    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;
 }