jimu-decompiled/sources/com/google/common/util/concurrent/UncheckedTimeoutException.java
2025-05-13 19:24:51 +02:00

22 lines
496 B
Java

package com.google.common.util.concurrent;
/* loaded from: classes.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);
}
}