deep-package-manager
Version:
DEEP Package Manager
19 lines (15 loc) • 460 B
JavaScript
/**
* Created by CCristi on 2/13/17.
*/
;
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;