Package com.ibm.ws.ffdc
@Version("1.0")
package com.ibm.ws.ffdc
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;
}
-
ClassDescriptionExtend this class to create a diagnostic module to help FFDC capture and dump data for your component.Configurator: Uses a LogProvider configuration to initialize the FFDC service.This class provides static methods to write first failure data capture (FFDC) records to assist in debugging problems.This interface is for objects that want to have control of how they are dumped in the FFDC report.