what-the-bank/sources/org/apache/commons/logging/LogConfigurationException.java

30 lines
745 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}