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

19 lines
537 B
Java

package org.greenrobot.greendao.async;
import org.greenrobot.greendao.DaoException;
/* loaded from: classes2.dex */
public class AsyncDaoException extends DaoException {
private static final long serialVersionUID = 5872157552005102382L;
private final AsyncOperation failedOperation;
public AsyncDaoException(AsyncOperation asyncOperation, Throwable th) {
super(th);
this.failedOperation = asyncOperation;
}
public AsyncOperation getFailedOperation() {
return this.failedOperation;
}
}