Rabbit-R1/switch port/java/sources/com/google/gson/JsonIOException.java

19 lines
399 B
Java
Raw Normal View History

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