mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
18 lines
415 B
Java
18 lines
415 B
Java
package com.google.gson;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class JsonSyntaxException extends JsonParseException {
|
|
private static final long serialVersionUID = 1;
|
|
|
|
public JsonSyntaxException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public JsonSyntaxException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public JsonSyntaxException(Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|