deep-package-manager
Version:
DEEP Package Manager
22 lines (18 loc) • 571 B
JavaScript
/**
* Created by AlexanderC on 9/11/15.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.FailedToCreateCloudFrontDistributionException = undefined;
var _Exception = require('../../../Exception/Exception');
class FailedToCreateCloudFrontDistributionException extends _Exception.Exception {
/**
* @param {String} error
*/
constructor(error) {
super(`Failed to create CloudFront distribution: ${error}`);
}
}
exports.FailedToCreateCloudFrontDistributionException = FailedToCreateCloudFrontDistributionException;