Rabbit-R1/switch port/java/sources/com/google/gson/JsonIOException.java
2024-05-21 17:08:36 -04:00

18 lines
399 B
Java

package com.google.gson;
/* loaded from: classes3.dex */
public final class JsonIOException extends JsonParseException {
private static final long serialVersionUID = 1;
public JsonIOException(String str) {
super(str);
}
public JsonIOException(String str, Throwable th) {
super(str, th);
}
public JsonIOException(Throwable th) {
super(th);
}
}