n8n
Version:
n8n Workflow Automation Tool
13 lines • 660 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BuilderNotConfiguredError = exports.BUILDER_NOT_CONFIGURED_CODE = void 0;
const n8n_workflow_1 = require("n8n-workflow");
exports.BUILDER_NOT_CONFIGURED_CODE = 'BUILDER_NOT_CONFIGURED';
class BuilderNotConfiguredError extends n8n_workflow_1.UserError {
constructor() {
super('Agent builder is not configured. An admin must select a provider and credential, or configure the n8n AI assistant proxy.');
this.code = exports.BUILDER_NOT_CONFIGURED_CODE;
}
}
exports.BuilderNotConfiguredError = BuilderNotConfiguredError;
//# sourceMappingURL=errors.js.map