1
0
Fork 0
mirror of synced 2024-06-18 18:35:37 +12:00
budibase/packages/backend-core/src/errors/index.js
2022-04-08 01:28:22 +01:00

44 lines
721 B
JavaScript

const http = require("./http")
const licensing = require("./licensing")
const codes = {
...licensing.codes,
}
const types = [licensing.type]
const context = {
...licensing.context,
}
const getPublicError = err => {
let error
if (err.code || err.type) {
// add generic error information
error = {
code: err.code,
type: err.type,
}
if (err.code && context[err.code]) {
error = {
...error,
// get any additional context from this error
...context[err.code](err),
}
}
}
return error
}
module.exports = {
codes,
types,
errors: {
UsageLimitError: licensing.UsageLimitError,
HTTPError: http.HTTPError,
},
getPublicError,
}