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

com.bazaarvoice.emodb.uac.api.EmoApiKeyExistsException Maven / Gradle / Ivy

There is a newer version: 6.5.171
Show newest version
package com.bazaarvoice.emodb.uac.api;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Exception thrown when creating an API key which already exists.  Since API keys are most commonly randomly generated
 * by Emo this exception is rarely thrown.
 */
@JsonIgnoreProperties({"cause", "localizedMessage", "stackTrace"})
public class EmoApiKeyExistsException extends RuntimeException {
    public EmoApiKeyExistsException() {
        super("API Key exists");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy