Class UnknownPathException

  • All Implemented Interfaces:
    Serializable, org.eclipse.ditto.model.base.headers.WithDittoHeaders<org.eclipse.ditto.model.base.exceptions.DittoRuntimeException>, org.eclipse.ditto.model.base.headers.WithManifest, org.eclipse.ditto.model.base.json.Jsonifiable<org.eclipse.ditto.json.JsonObject>, org.eclipse.ditto.model.base.json.Jsonifiable.WithPredicate<org.eclipse.ditto.json.JsonObject,​org.eclipse.ditto.json.JsonField>

    public final class UnknownPathException
    extends org.eclipse.ditto.model.base.exceptions.DittoRuntimeException
    Thrown if a path does not correspond to any known command, response or event.
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  UnknownPathException.Builder
      A mutable builder with a fluent API for a UnknownPathException.
      • Nested classes/interfaces inherited from class org.eclipse.ditto.model.base.exceptions.DittoRuntimeException

        org.eclipse.ditto.model.base.exceptions.DittoRuntimeException.JsonFields
      • Nested classes/interfaces inherited from interface org.eclipse.ditto.model.base.json.Jsonifiable

        org.eclipse.ditto.model.base.json.Jsonifiable.WithFieldSelector, org.eclipse.ditto.model.base.json.Jsonifiable.WithFieldSelectorAndPredicate<T extends Object>, org.eclipse.ditto.model.base.json.Jsonifiable.WithPointer<J extends org.eclipse.ditto.json.JsonValue>, org.eclipse.ditto.model.base.json.Jsonifiable.WithPredicate<J extends org.eclipse.ditto.json.JsonValue,​T extends Object>
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static String ERROR_CODE
      Error code of this exception.
    • Method Detail

      • newBuilder

        public static UnknownPathException.Builder newBuilder​(org.eclipse.ditto.json.JsonPointer path)
        A mutable builder for a UnknownPathException.
        Parameters:
        path - the path not supported.
        Returns:
        the builder.
      • fromMessage

        public static UnknownPathException fromMessage​(String message,
                                                       org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Constructs a new UnknownPathException object with given message.
        Parameters:
        message - detail message. This message can be later retrieved by the Throwable.getMessage() method.
        dittoHeaders - the headers of the command which resulted in this exception.
        Returns:
        the new UnknownPathException.
      • fromJson

        public static UnknownPathException fromJson​(org.eclipse.ditto.json.JsonObject jsonObject,
                                                    org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Constructs a new UnknownPathException object with the exception message extracted from the given JSON object.
        Parameters:
        jsonObject - the JSON to read the DittoRuntimeException.JsonFields.MESSAGE field from.
        dittoHeaders - the headers of the command which resulted in this exception.
        Returns:
        the new UnknownPathException.
        Throws:
        org.eclipse.ditto.json.JsonMissingFieldException - if the jsonObject does not have the DittoRuntimeException.JsonFields.MESSAGE field.