UNPKG

deep-package-manager

Version:
26 lines (22 loc) 634 B
/** * Created by CCristi on 02/28/17. */ 'use strict'; 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;