deep-package-manager
Version:
DEEP Package Manager
26 lines (22 loc) • 655 B
JavaScript
/**
* Created by AlexanderC on 6/16/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FailedToCreateElasticacheClusterException = undefined;
var _Exception = require('../../../Exception/Exception');
/**
* Thrown when cache cluster creation fails
*/
class FailedToCreateElasticacheClusterException extends _Exception.Exception {
/**
* @param {String} clusterId
* @param {String} error
*/
constructor(clusterId, error) {
super(`Error on creating cache cluster "${clusterId}". ${error}`);
}
}
exports.FailedToCreateElasticacheClusterException = FailedToCreateElasticacheClusterException;