Class UnknownTopicPathException

  • 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 UnknownTopicPathException
    extends org.eclipse.ditto.model.base.exceptions.DittoRuntimeException
    Thrown if a TopicPath is not supported.
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  UnknownTopicPathException.Builder
      A mutable builder with a fluent API for a UnknownTopicPathException.
      • 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 UnknownTopicPathException.Builder newBuilder​(TopicPath topicPath)
        A mutable builder for a UnknownTopicPathException.
        Parameters:
        topicPath - the topic path of the adaptable not supported.
        Returns:
        the builder.
      • newBuilder

        public static UnknownTopicPathException.Builder newBuilder​(String path)
        A mutable builder for a UnknownTopicPathException.
        Parameters:
        path - the topic path of the adaptable not supported.
        Returns:
        the builder.
      • fromMessage

        public static UnknownTopicPathException fromMessage​(String message,
                                                            org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Constructs a new UnknownTopicPathException 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 UnknownTopicPathException.
      • fromJson

        public static UnknownTopicPathException fromJson​(org.eclipse.ditto.json.JsonObject jsonObject,
                                                         org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Constructs a new UnknownTopicPathException 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 UnknownTopicPathException.
        Throws:
        org.eclipse.ditto.json.JsonMissingFieldException - if the jsonObject does not have the DittoRuntimeException.JsonFields.MESSAGE field.