22 lines
497 B
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);
|
||
|
}
|
||
|
}
|