UNPKG

deep-package-manager

Version:
26 lines (22 loc) 655 B
/** * Created by AlexanderC on 6/16/15. */ 'use strict'; 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;