public class JsonException
extends RuntimeException
JsonException is the exception thrown by the JSON builder and slurper classes,
whenever a problem occurs when creating or parsing JSON data structures.
| Constructor and description |
|---|
JsonException()Creates a JsonException with no detail message. |
JsonException(String s)Creates a JsonException with the supplied detail message. |
JsonException(String s, Throwable throwable)Creates a JsonException with the supplied detail message and cause. |
JsonException(Throwable throwable)Creates a JsonException with the supplied cause. |
| Methods inherited from class | Name |
|---|---|
class RuntimeException |
addSuppressed, equals, fillInStackTrace, getCause, getClass, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, hashCode, initCause, notify, notifyAll, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString, wait, wait, wait |
Creates a JsonException with no detail message.
Creates a JsonException with the supplied detail message.
s - the detail message Creates a JsonException with the supplied detail message and cause.
s - the detail messagethrowable - the cause Creates a JsonException with the supplied cause.
throwable - the causeCopyright © 2003-2026 The Apache Software Foundation. All rights reserved.