Class JsonMurmelException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.murmelmeister.library.exceptions.JsonMurmelException
All Implemented Interfaces:
Serializable

public class JsonMurmelException extends RuntimeException
This class represents an exception thrown when there is an error related to JSON operations in the Murmel library. It extends RuntimeException to allow for unchecked exceptions that can be thrown during runtime.
See Also:
  • Constructor Details

    • JsonMurmelException

      public JsonMurmelException(String message)
      Constructs a new JsonMurmelException with the specified detail message.
      Parameters:
      message - The detail message for this exception
    • JsonMurmelException

      public JsonMurmelException(String message, Throwable cause)
      Constructs a new JsonMurmelException with the specified detail message and cause.
      Parameters:
      message - The detail message for this exception
      cause - The cause of the exception, which can be retrieved later via the Throwable.getCause() method
    • JsonMurmelException

      public JsonMurmelException(Throwable cause)
      Constructs a new JsonMurmelException with the specified cause.
      Parameters:
      cause - The cause of the exception, which can be retrieved later via the Throwable.getCause() method