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

pl.allegro.tech.hermes.domain.oauth.OAuthProviderNotExistsException Maven / Gradle / Ivy

There is a newer version: 2.6.21
Show newest version
package pl.allegro.tech.hermes.domain.oauth;

import pl.allegro.tech.hermes.api.ErrorCode;
import pl.allegro.tech.hermes.common.exception.HermesException;

public class OAuthProviderNotExistsException extends HermesException {

    public OAuthProviderNotExistsException(String oAuthProviderName) {
        super(String.format("OAuth provider %s does not exist", oAuthProviderName));
    }

    @Override
    public ErrorCode getCode() {
        return ErrorCode.OAUTH_PROVIDER_NOT_EXISTS;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy