Class ThingNotCreatableException

  • 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>, org.eclipse.ditto.model.things.ThingException

    @Immutable
    public final class ThingNotCreatableException
    extends org.eclipse.ditto.model.base.exceptions.DittoRuntimeException
    implements org.eclipse.ditto.model.things.ThingException
    Thrown if a Thing could not be created because a linked Policy ID was not existing for example.
    See Also:
    Serialized Form
    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  ThingNotCreatableException.Builder
      A mutable builder with a fluent API for a ThingNotCreatableException.
      • 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.
      • Fields inherited from interface org.eclipse.ditto.model.things.ThingException

        ERROR_CODE_PREFIX
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static ThingNotCreatableException fromJson​(org.eclipse.ditto.json.JsonObject jsonObject, org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
      Constructs a new ThingNotCreatableException object with the exception message extracted from the given JSON object.
      static ThingNotCreatableException fromMessage​(String message, String description, org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
      Constructs a new ThingNotCreatableException object with the given exception message.
      static ThingNotCreatableException.Builder newBuilderForPolicyExisting​(org.eclipse.ditto.model.things.ThingId thingId, org.eclipse.ditto.model.policies.PolicyId policyId)
      A mutable builder for a ThingNotCreatableException thrown if a Thing could not be created because the creation of its implicit Policy failed.
      static ThingNotCreatableException.Builder newBuilderForPolicyMissing​(org.eclipse.ditto.model.things.ThingId thingId, org.eclipse.ditto.model.policies.PolicyId policyId)
      A mutable builder for a ThingNotCreatableException thrown if a Thing could not be created because a referenced Policy in the Thing to be created is missing.
      org.eclipse.ditto.model.base.exceptions.DittoRuntimeException setDittoHeaders​(org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)  
      • Methods inherited from class org.eclipse.ditto.model.base.exceptions.DittoRuntimeException

        appendToJson, asDittoRuntimeException, equals, fromJson, fromMessage, fromUnknownErrorJson, getBuilder, getDescription, getDittoHeaders, getEmptyBuilder, getErrorCode, getHref, getImplementedSchemaVersion, getManifest, getStatusCode, hashCode, newBuilder, newBuilder, readDescription, readHRef, readMessage, toBuilder, toJson, toJson, toString
      • Methods inherited from interface org.eclipse.ditto.model.base.json.Jsonifiable

        getLatestSchemaVersion, getSupportedSchemaVersions, implementsSchemaVersion, implementsSchemaVersion, toJsonString
      • Methods inherited from interface org.eclipse.ditto.model.base.json.Jsonifiable.WithPredicate

        toJson, toJsonString, toJsonString
    • Method Detail

      • newBuilderForPolicyMissing

        public static ThingNotCreatableException.Builder newBuilderForPolicyMissing​(org.eclipse.ditto.model.things.ThingId thingId,
                                                                                    org.eclipse.ditto.model.policies.PolicyId policyId)
        A mutable builder for a ThingNotCreatableException thrown if a Thing could not be created because a referenced Policy in the Thing to be created is missing.
        Parameters:
        thingId - the ID of the Thing.
        policyId - the ID of the Policy which was used when creating the Thing.
        Returns:
        the builder.
      • newBuilderForPolicyExisting

        public static ThingNotCreatableException.Builder newBuilderForPolicyExisting​(org.eclipse.ditto.model.things.ThingId thingId,
                                                                                     org.eclipse.ditto.model.policies.PolicyId policyId)
        A mutable builder for a ThingNotCreatableException thrown if a Thing could not be created because the creation of its implicit Policy failed.
        Parameters:
        thingId - the ID of the Thing.
        policyId - the ID of the Policy which was used when creating the Thing.
        Returns:
        the builder.
      • fromMessage

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

        public static ThingNotCreatableException fromJson​(org.eclipse.ditto.json.JsonObject jsonObject,
                                                          org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Constructs a new ThingNotCreatableException 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 ThingNotCreatableException.
        Throws:
        NullPointerException - if any argument is null.
        org.eclipse.ditto.json.JsonMissingFieldException - if this JsonObject did not contain an error message.
        org.eclipse.ditto.json.JsonParseException - if the passed in jsonObject was not in the expected format.
      • setDittoHeaders

        public org.eclipse.ditto.model.base.exceptions.DittoRuntimeException setDittoHeaders​(org.eclipse.ditto.model.base.headers.DittoHeaders dittoHeaders)
        Specified by:
        setDittoHeaders in interface org.eclipse.ditto.model.base.headers.WithDittoHeaders<org.eclipse.ditto.model.base.exceptions.DittoRuntimeException>
        Overrides:
        setDittoHeaders in class org.eclipse.ditto.model.base.exceptions.DittoRuntimeException