deep-package-manager
Version:
DEEP Package Manager
22 lines (18 loc) • 581 B
JavaScript
/**
* Created by CCristi on 2/13/17.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CNAMEAlreadyExistsException = undefined;
var _Exception = require('../../Exception/Exception');
class CNAMEAlreadyExistsException extends _Exception.Exception {
/**
* @param {String} cName
*/
constructor(cName) {
super(`Deepify publish requires "${cName}" CNAME during blue green deployment. ` + `Please release it from CloudFront distribution and try again.`);
}
}
exports.CNAMEAlreadyExistsException = CNAMEAlreadyExistsException;