mirror of
https://github.com/PretendoNetwork/BOSS.git
synced 2026-07-04 09:00:57 -05:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
export default class RequestException extends Error {
|
|
status: number;
|
|
|
|
constructor(message: string, status: number, options?: ErrorOptions | undefined) {
|
|
super(message, options);
|
|
|
|
this.status = status;
|
|
}
|
|
} |