UNPKG

deep-package-manager

Version:
22 lines (18 loc) 581 B
/** * Created by CCristi on 2/13/17. */ 'use strict'; 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;