@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;
 }