All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.sdk.models.errors.InvalidField Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.models.errors;

import com.fasterxml.jackson.annotation.JsonCreator;

/**
 * @see io.sphere.sdk.client.ErrorResponseException
 */
public class InvalidField extends SphereError {

    public static final String CODE = "InvalidField";

    @JsonCreator
    private InvalidField(final String message) {
        super(CODE, message);
    }

    public static InvalidField of(final String message) {
        return new InvalidField(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy