what-the-bank/sources/com/google/common/base/VerifyException.java

20 lines
383 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.common.base;
/* loaded from: classes2.dex */
public class VerifyException extends RuntimeException {
public VerifyException() {
}
public VerifyException(String str) {
super(str);
}
public VerifyException(Throwable th) {
super(th);
}
public VerifyException(String str, Throwable th) {
super(str, th);
}
}