UNPKG

deep-package-manager

Version:
19 lines (15 loc) 460 B
/** * Created by CCristi on 2/13/17. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.MissingCNAMEException = undefined; var _Exception = require('../../Exception/Exception'); class MissingCNAMEException extends _Exception.Exception { constructor() { super('You must setup CNAME for your cloudfront distribution to enable blue-green deployment'); } } exports.MissingCNAMEException = MissingCNAMEException;