1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-18 23:01:02 +00:00
bramw_baserow/web-frontend/modules/database/formula/parser/errors.js
2021-10-05 11:31:44 +00:00

9 lines
262 B
JavaScript

export default class BaserowFormulaParserError extends Error {
constructor(offendingSymbol, line, character, message) {
super()
this.offendingSymbol = offendingSymbol
this.line = line
this.character = character
this.message = message
}
}