Rabbit-R1/switch port/java/sources/com/google/common/base/VerifyException.java

23 lines
511 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
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);
}
}