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