com.progsbase.libraries.JSON.JSONException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of progsbase-to-easyjson Show documentation
Show all versions of progsbase-to-easyjson Show documentation
Adapter Progsbase JSON library to easyjson
package com.progsbase.libraries.JSON;
public class JSONException extends Exception {
public JSONException(String errorMessage) {
super(errorMessage);
}
public JSONException(Exception e) {
super(e);
}
public JSONException(Throwable e) {
super(e);
}
}