25 lines
568 B
Java
25 lines
568 B
Java
package org.apache.commons.logging;
|
|
|
|
public class LogConfigurationException extends RuntimeException {
|
|
public LogConfigurationException() {}
|
|
|
|
public LogConfigurationException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public LogConfigurationException(Throwable cause) {
|
|
this((cause == null) ? null : cause.toString(), cause);
|
|
}
|
|
|
|
public LogConfigurationException(String message, Throwable cause) {
|
|
super(message);
|
|
this.cause = cause;
|
|
}
|
|
|
|
protected Throwable cause = null;
|
|
|
|
public Throwable getCause() {
|
|
return this.cause;
|
|
}
|
|
}
|