what-the-bank/sources/com/google/common/util/concurrent/ExecutionError.java

22 lines
441 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.common.util.concurrent;
/* loaded from: classes2.dex */
public class ExecutionError extends Error {
private static final long serialVersionUID = 0;
protected ExecutionError() {
}
protected ExecutionError(String str) {
super(str);
}
public ExecutionError(String str, Error error) {
super(str, error);
}
public ExecutionError(Error error) {
super(error);
}
}