Package org.bson.json

Class JsonParseException

All Implemented Interfaces:
Serializable

@Deprecated(since="2022-10-31") public class JsonParseException extends RuntimeException
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
JSONParseException indicates some exception happened during JSON processing.
Since:
3.0
See Also:
  • Constructor Details

    • JsonParseException

      public JsonParseException()
      Deprecated.
      Constructs a new runtime exception with null as its detail message.
    • JsonParseException

      public JsonParseException(String s)
      Deprecated.
      Constructs a new runtime exception with the specified detail message.
      Parameters:
      s - The detail message.
    • JsonParseException

      public JsonParseException(String pattern, Object... args)
      Deprecated.
      Constructs a new runtime exception with string formatted using specified pattern and arguments.
      Parameters:
      pattern - A format string.
      args - the arguments to insert into the pattern String
    • JsonParseException

      public JsonParseException(Throwable t)
      Deprecated.
      Create a JSONParseException with the given Throwable cause.
      Parameters:
      t - the throwable root case