2020-02-05 02:27:46 +07:00
|
|
|
export enum HttpCode {
|
|
|
|
Ok = 200,
|
|
|
|
Redirect = 302,
|
|
|
|
NotFound = 404,
|
|
|
|
BadRequest = 400,
|
|
|
|
Unauthorized = 401,
|
|
|
|
LargePayload = 413,
|
|
|
|
ServerError = 500,
|
|
|
|
}
|
|
|
|
|
|
|
|
export class HttpError extends Error {
|
2020-07-24 00:23:33 +07:00
|
|
|
public constructor(message: string, public readonly code: number, public readonly details?: object) {
|
2020-02-05 02:27:46 +07:00
|
|
|
super(message)
|
|
|
|
this.name = this.constructor.name
|
|
|
|
}
|
|
|
|
}
|