salix/loopback/util/forbiddenError.js

10 lines
277 B
JavaScript
Raw Normal View History

2023-04-06 12:59:25 +00:00
module.exports = class ForbiddenError extends Error {
constructor(message, code, ...translateArgs) {
super(message);
this.name = 'ForbiddenError';
this.statusCode = 403;
this.code = code;
this.translateArgs = translateArgs;
}
};