crm-api-template-generator/backend/errors/custom-api.js

8 lines
120 B
JavaScript
Raw Normal View History

2023-11-29 20:05:48 +00:00
class CustomAPIError extends Error {
constructor(message) {
super(message)
}
}
module.exports = CustomAPIError