deep-package-manager
Version:
DEEP Package Manager
27 lines (23 loc) • 789 B
JavaScript
/**
* Created by mgoria on 04/07/16.
*/
;
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;