Save This Page
Home » slf4j-1.5.5 » org.apache » log4j » spi » [javadoc | source]
org.apache.log4j.spi
public class: ThrowableInformation [javadoc | source]
java.lang.Object
   org.apache.log4j.spi.ThrowableInformation

All Implemented Interfaces:
    Serializable

ThrowableInformation is log4j's internal representation of throwables. It essentially consists of a string array, called 'rep', where the first element, that is rep[0], represents the string representation of the throwable (i.e. the value you get when you do throwable.toString()) and subsequent elements correspond the stack trace with the top most entry of the stack corresponding to the second entry of the 'rep' array that is rep[1].
Field Summary
static final  long serialVersionUID     
Constructor:
 public ThrowableInformation(Throwable throwable) 
 public ThrowableInformation(String[] r) 
    Create new instance.
    Parameters:
    r - String representation of throwable.
    since: 1.2.15 -
Method from org.apache.log4j.spi.ThrowableInformation Summary:
getThrowable,   getThrowableStrRep
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.log4j.spi.ThrowableInformation Detail:
 public Throwable getThrowable() 
 public String[] getThrowableStrRep()