Home | History | Annotate | Download | only in logging

Lines Matching refs:cause

56      * Construct a new exception with the specified cause and a derived detail
59 * @param cause
60 * The underlying cause
62 public LogConfigurationException(Throwable cause) {
64 this((cause == null) ? null : cause.toString(), cause);
69 * Construct a new exception with the specified detail message and cause.
73 * @param cause
74 * The underlying cause
76 public LogConfigurationException(String message, Throwable cause) {
77 super(message + " (Caused by " + cause + ")");
78 this.cause = cause; // Two-argument version requires JDK 1.4 or later
82 * The underlying cause of this exception.
84 protected Throwable cause = null;
87 * Return the underlying cause of this exception (if any).
90 return (this.cause);