Home | History | Annotate | Download | only in logging

Lines Matching refs:cause

55      * Construct a new exception with the specified cause and a derived
58 * @param cause The underlying cause
60 public LogConfigurationException(Throwable cause) {
62 this((cause == null) ? null : cause.toString(), cause);
68 * Construct a new exception with the specified detail message and cause.
71 * @param cause The underlying cause
73 public LogConfigurationException(String message, Throwable cause) {
75 super(message + " (Caused by " + cause + ")");
76 this.cause = cause; // Two-argument version requires JDK 1.4 or later
82 * The underlying cause of this exception.
84 protected Throwable cause = null;
88 * Return the underlying cause of this exception (if any).
92 return (this.cause);