deep-package-manager
Version:
DEEP Package Manager
26 lines (22 loc) • 634 B
JavaScript
/**
* Created by CCristi on 02/28/17.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FailedToRetrieveUsagePlanException = undefined;
var _Exception = require('../../../Exception/Exception');
/**
* Throws when API Gateway usage plan creation failed
*/
class FailedToRetrieveUsagePlanException extends _Exception.Exception {
/**
* @param {String} planId
* @param {String} error
*/
constructor(planId, error) {
super(`Error retrieving "${planId}" api gateway usage plan. ${error}`);
}
}
exports.FailedToRetrieveUsagePlanException = FailedToRetrieveUsagePlanException;