Class UnknownEventException

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

      Nested Classes 
      Modifier and Type Class Description
      static class  UnknownEventException.Builder
      A mutable builder with a fluent API for a UnknownEventException.
      • 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 UnknownEventException.Builder newBuilder​(String eventName)
        A mutable builder for a UnknownEventException.
        Parameters:
        eventName - the event not supported.
        Returns:
        the builder.
      • fromMessage

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

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