UNPKG

deep-package-manager

Version:
22 lines (18 loc) 571 B
/** * Created by AlexanderC on 9/11/15. */ 'use strict'; 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;