mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 17:42:33 -06:00
22 lines
511 B
Java
22 lines
511 B
Java
package com.google.common.base;
|
|
|
|
import javax.annotation.CheckForNull;
|
|
|
|
@ElementTypesAreNonnullByDefault
|
|
/* loaded from: classes2.dex */
|
|
public class VerifyException extends RuntimeException {
|
|
public VerifyException() {
|
|
}
|
|
|
|
public VerifyException(@CheckForNull String str) {
|
|
super(str);
|
|
}
|
|
|
|
public VerifyException(@CheckForNull Throwable th) {
|
|
super(th);
|
|
}
|
|
|
|
public VerifyException(@CheckForNull String str, @CheckForNull Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|