mirror of
https://github.com/sern-handler/website
synced 2026-06-28 02:32:23 +00:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
lunr.QueryParseError = function (message, start, end) {
|
|
this.name = "QueryParseError"
|
|
this.message = message
|
|
this.start = start
|
|
this.end = end
|
|
}
|
|
|
|
lunr.QueryParseError.prototype = new Error
|