mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-08 19:20:50 -06:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
|
// https://www.fastify.io/docs/latest/Reference/Reply/#async-await-and-promises
|
||
|
export class FastifyReplyError extends Error {
|
||
|
public message: string;
|
||
|
public statusCode: number;
|
||
|
|
||
|
constructor(statusCode: number, message: string) {
|
||
|
super(message);
|
||
|
this.message = message;
|
||
|
this.statusCode = statusCode;
|
||
|
}
|
||
|
}
|