deepify
Version:
DEEP Development Tools
23 lines (19 loc) • 585 B
JavaScript
/**
* Created by CCristi on 5/18/16.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ServerAlreadyRunningException = undefined;
var _Exception = require('../../Exception/Exception');
class ServerAlreadyRunningException extends _Exception.Exception {
/**
* @param {AbstractLauncher} launcher
* @param {String|Error} error
*/
constructor(launcher, error) {
super(`Elasticsearch server '${launcher.shortUrl}' is already running: ${error.stack}`);
}
}
exports.ServerAlreadyRunningException = ServerAlreadyRunningException;