jimu-decompiled/sources/org/greenrobot/greendao/DaoException.java
2025-05-13 19:24:51 +02:00

34 lines
754 B
Java

package org.greenrobot.greendao;
import android.database.SQLException;
/* loaded from: classes2.dex */
public class DaoException extends SQLException {
private static final long serialVersionUID = -5877937327907457779L;
public DaoException() {
}
protected void safeInitCause(Throwable th) {
try {
initCause(th);
} catch (Throwable th2) {
DaoLog.a("Could not set initial cause", th2);
DaoLog.a("Initial cause is:", th);
}
}
public DaoException(String str) {
super(str);
}
public DaoException(String str, Throwable th) {
super(str);
safeInitCause(th);
}
public DaoException(Throwable th) {
safeInitCause(th);
}
}