deepify
Version:
DEEP Development Tools
22 lines (18 loc) • 514 B
JavaScript
/**
* Created by CCristi on 5/16/16.
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.MissingElasticsearchBinaryException = undefined;
var _Exception = require('../../Exception/Exception');
class MissingElasticsearchBinaryException extends _Exception.Exception {
/**
* @param {String} path
*/
constructor(path) {
super(`Missing elasticsearch binary in '${path}'`);
}
}
exports.MissingElasticsearchBinaryException = MissingElasticsearchBinaryException;