mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
a50d0e2a21
Unleash is an API and it would simplyfy a lot of the specific errors could carry the expected HTTP status code for this error. This would eliminate the need for a gigantic switch/case in the handle-errors function.
11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
import BaseError from './base-error';
|
|
|
|
class DisabledError extends BaseError {
|
|
constructor(message: string) {
|
|
super(message, 422, 'DisabledError');
|
|
Error.captureStackTrace(this, this.constructor);
|
|
}
|
|
}
|
|
|
|
export default DisabledError;
|