mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
13 lines
268 B
Java
13 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);
|
||
|
}
|
||
|
}
|