Sha256: 41e90054747f7b675252585fbb5fb45531ccc62f6b3fb3540046f4e48380060d
Contents?: true
Size: 617 Bytes
Versions: 94
Compression:
Stored size: 617 Bytes
Contents
package org.json.me; /** * The JSONException is thrown by the JSON.org classes then things are amiss. * @author JSON.org * @version 2 */ public class RhoJSONException extends Exception { private Throwable cause; /** * Constructs a JSONException with an explanatory message. * @param message Detail about the reason for the exception. */ public RhoJSONException(String message) { super(message); } public RhoJSONException(Throwable t) { super(t.getMessage()); this.cause = t; } public Throwable getCause() { return this.cause; } }
Version data entries
94 entries across 94 versions & 1 rubygems