Class FeatureDefinitionEmptyException

  • 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>, ThingException

    public final class FeatureDefinitionEmptyException
    extends org.eclipse.ditto.model.base.exceptions.DittoRuntimeException
    implements ThingException
    This exception is thrown if a Feature Definition was set to an empty array.
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  FeatureDefinitionEmptyException.Builder
      A mutable builder with a fluent API for an immutable FeatureDefinitionEmptyException.
      • 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>
    • Constructor Detail

      • FeatureDefinitionEmptyException

        public FeatureDefinitionEmptyException()
        Constructs a new FeatureDefinitionEmptyException object.
    • Method Detail

      • newBuilder

        public static FeatureDefinitionEmptyException.Builder newBuilder()
        Returns a mutable builder with a fluent API for an immutable FeatureDefinitionEmptyException.
        Returns:
        the builder.
      • fromMessage

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

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