Sha256: 6e143d6afeb37c5850025da57cdbcb5e29f65ad12001cae9a270c20afabd1c97
Contents?: true
Size: 602 Bytes
Versions: 164
Compression:
Stored size: 602 Bytes
Contents
package sh.calaba.org.codehaus.jackson; /** * Exception type for parsing problems, used when non-well-formed content * (content that does not conform to JSON syntax as per specification) * is encountered. */ public class JsonParseException extends JsonProcessingException { @SuppressWarnings("hiding") final static long serialVersionUID = 123; // Stupid eclipse... public JsonParseException(String msg, JsonLocation loc) { super(msg, loc); } public JsonParseException(String msg, JsonLocation loc, Throwable root) { super(msg, loc, root); } }
Version data entries
164 entries across 164 versions & 2 rubygems