@aaswe/codebase-ai
Version:
AI-Assisted Software Engineering (AASWE) - Rich codebase context for IDE LLMs
26 lines • 730 B
JavaScript
;
/**
* SPARQL Query Engine Types
*
* Comprehensive type definitions for natural language to SPARQL translation,
* RDF knowledge querying, and intelligent query optimization.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SPARQLError = void 0;
class SPARQLError extends Error {
code;
query;
sparql;
details;
constructor(code, message, options = {}) {
super(message);
this.name = 'SPARQLError';
this.code = code;
this.query = options.query;
this.sparql = options.sparql;
this.details = options.details;
}
}
exports.SPARQLError = SPARQLError;
// All types are already exported above
//# sourceMappingURL=types.js.map