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

22 lines
497 B
Java

package com.google.common.util.concurrent;
/* loaded from: classes2.dex */
public class UncheckedTimeoutException extends RuntimeException {
private static final long serialVersionUID = 0;
public UncheckedTimeoutException() {
}
public UncheckedTimeoutException(String str) {
super(str);
}
public UncheckedTimeoutException(Throwable th) {
super(th);
}
public UncheckedTimeoutException(String str, Throwable th) {
super(str, th);
}
}