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

com.bazaarvoice.emodb.auth.identity.IdentityExistsException Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.auth.identity;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Exception thrown when a call is made to create or migrate an entity whose authentication ID is already in use.
 */
@JsonIgnoreProperties({"cause", "localizedMessage", "stackTrace"})
public class IdentityExistsException extends RuntimeException {

    public IdentityExistsException() {
        super("Identity exists");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy