20 lines
383 B
Java
20 lines
383 B
Java
|
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);
|
||
|
}
|
||
|
}
|