Home | History | Annotate | Download | only in logging

Lines Matching refs:cause

60      * Construct a new exception with the specified cause and a derived
63 * @param cause The underlying cause
65 public LogConfigurationException(Throwable cause) {
67 this((cause == null) ? null : cause.toString(), cause);
73 * Construct a new exception with the specified detail message and cause.
76 * @param cause The underlying cause
78 public LogConfigurationException(String message, Throwable cause) {
80 super(message + " (Caused by " + cause + ")");
81 this.cause = cause; // Two-argument version requires JDK 1.4 or later
87 * The underlying cause of this exception.
89 protected Throwable cause = null;
93 * Return the underlying cause of this exception (if any).
97 return (this.cause);