UNPKG

deep-package-manager

Version:
32 lines (26 loc) 702 B
/** * Created by CCristi on 2/13/17. */ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.RecordSetNotFoundException = undefined; var _Exception = require('../../Exception/Exception'); class RecordSetNotFoundException extends _Exception.Exception { /** * @param {String} domainName * @param {String} hostname */ constructor(domainName, hostname) { super(`RecordSet not found matching "${domainName}" domain and "${hostname}" host.`); this._targetHostname = hostname; } /** * @returns {String|*} */ get targetHostname() { return this._targetHostname; } } exports.RecordSetNotFoundException = RecordSetNotFoundException;