Class MethodNotFoundJsonMappingException

All Implemented Interfaces:
Serializable

public class MethodNotFoundJsonMappingException extends IdJsonMappingException
Exception thrown when JSON mapping fails due to a method not found error.

This exception is used during JSON-RPC request deserialization when the requested method cannot be found or mapped. It extends IdJsonMappingException to preserve the request ID for error responses.

See Also:
  • Constructor Details

    • MethodNotFoundJsonMappingException

      public MethodNotFoundJsonMappingException(String msg, Object id)
      Constructs exception with message and request ID.
      Parameters:
      msg - the error message
      id - the JSON-RPC request ID
    • MethodNotFoundJsonMappingException

      public MethodNotFoundJsonMappingException(String msg, Throwable cause, Object id)
      Constructs exception with message, cause, and request ID.
      Parameters:
      msg - the error message
      cause - the underlying cause
      id - the JSON-RPC request ID