mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
12 lines
268 B
Java
12 lines
268 B
Java
package com.alibaba.fastjson;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class JSONException extends RuntimeException {
|
|
public JSONException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public JSONException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
}
|