first commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user