Sha256: e893493d5bb8bb496d831cac6224f3d7deb12251f116bf4e0c23fcd76e1a793a
Contents?: true
Size: 720 Bytes
Versions: 164
Compression:
Stored size: 720 Bytes
Contents
package sh.calaba.org.codehaus.jackson; /** * Exception type for exceptions during JSON writing, such as trying * to output content in wrong context (non-matching end-array or end-object, * for example). */ public class JsonGenerationException extends JsonProcessingException { @SuppressWarnings("hiding") final static long serialVersionUID = 123; // Stupid eclipse... public JsonGenerationException(Throwable rootCause) { super(rootCause); } public JsonGenerationException(String msg) { super(msg, (JsonLocation)null); } public JsonGenerationException(String msg, Throwable rootCause) { super(msg, (JsonLocation)null, rootCause); } }
Version data entries
164 entries across 164 versions & 2 rubygems