mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
24 lines
641 B
Java
24 lines
641 B
Java
package com.google.common.util.concurrent;
|
|
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes3.dex */
|
|
public class UncheckedExecutionException extends RuntimeException {
|
|
private static final long serialVersionUID = 0;
|
|
|
|
protected UncheckedExecutionException() {
|
|
}
|
|
|
|
protected UncheckedExecutionException(@CheckForNull String str) {
|
|
super(str);
|
|
}
|
|
|
|
public UncheckedExecutionException(@CheckForNull String str, @CheckForNull Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public UncheckedExecutionException(@CheckForNull Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|