@wix-pilot/core
Version:
A flexible plugin that drives your tests with human-written commands, enhanced by the power of large language models (LLMs)
13 lines (12 loc) • 343 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PilotError = void 0;
class PilotError extends Error {
originalError;
constructor(message, originalError) {
super(message);
this.originalError = originalError;
this.name = "PilotError";
}
}
exports.PilotError = PilotError;