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

io.sphere.sdk.customers.CustomerInvalidCredentials Maven / Gradle / Ivy

There is a newer version: 1.0.0-M12
Show newest version
package io.sphere.sdk.customers;

import io.sphere.sdk.models.SphereError;

/**
 * A customer endpoint specific error, the account with the given credentials have not been found.
 *
 * {@include.example io.sphere.sdk.customers.commands.CustomerChangePasswordCommandTest#execution()}
 */
public class CustomerInvalidCredentials extends SphereError {
    public static final String CODE = "InvalidCredentials";

    public CustomerInvalidCredentials(final String message) {
        super(CODE, message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy