UNPKG

deep-package-manager

Version:
27 lines (23 loc) 789 B
/** * Created by mgoria on 04/07/16. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.FailedToAddClientIdToOIDCProviderException = undefined; var _Exception = require('../../../Exception/Exception'); /** * Throws when failed to add a new clientId to an OpenID Connect Identity Provider */ class FailedToAddClientIdToOIDCProviderException extends _Exception.Exception { /** * @param {String} clientId * @param {String} identityProviderARN * @param {String} error */ constructor(clientId, identityProviderARN, error) { super(`Error on adding "${clientId}" clientId to "${identityProviderARN}" OIDC Provider. ${error}`); } } exports.FailedToAddClientIdToOIDCProviderException = FailedToAddClientIdToOIDCProviderException;