packageorg.json.adf;importjp.agentec.abook.abv.bl.common.exception.ABVRuntimeException;/** * <b>adkのorg.jsonパッケージとの競合を防ぐためにパッケージ名をorg.json.adfにしました。</b> * The JSONException is thrown by the JSON.org classes when things are amiss. * @author JSON.org * @version 2010-12-24 */publicclassJSONExceptionextendsABVRuntimeException{privatestaticfinallongserialVersionUID=0;privateThrowablecause;/** * Constructs a JSONException with an explanatory message. * @param message Detail about the reason for the exception. */publicJSONException(Stringmessage){super(message);}publicJSONException(Throwablecause){super(cause.getMessage());this.cause=cause;}@OverridepublicThrowablegetCause(){returnthis.cause;}}