30 lines
745 B
Java
30 lines
745 B
Java
package org.apache.commons.logging;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class LogConfigurationException extends RuntimeException {
|
|
private Throwable c;
|
|
|
|
public LogConfigurationException() {
|
|
this.c = null;
|
|
}
|
|
|
|
public LogConfigurationException(String str) {
|
|
super(str);
|
|
this.c = null;
|
|
}
|
|
|
|
public LogConfigurationException(Throwable th) {
|
|
this(th == null ? null : th.toString(), th);
|
|
}
|
|
|
|
public LogConfigurationException(String str, Throwable th) {
|
|
super(new StringBuffer().append(str).append(" (Caused by ").append(th).append(")").toString());
|
|
this.c = th;
|
|
}
|
|
|
|
@Override // java.lang.Throwable
|
|
public Throwable getCause() {
|
|
return this.c;
|
|
}
|
|
}
|