mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
23 lines
511 B
Java
23 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);
|
||
|
}
|
||
|
}
|