2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
export class StatusError extends Error {
|
|
|
|
public statusCode: number;
|
|
|
|
public statusMessage?: string;
|
|
|
|
public isClientError: boolean;
|
2024-01-06 01:40:08 +01:00
|
|
|
public isRetryable: boolean;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
constructor(message: string, statusCode: number, statusMessage?: string) {
|
|
|
|
super(message);
|
|
|
|
this.name = 'StatusError';
|
|
|
|
this.statusCode = statusCode;
|
|
|
|
this.statusMessage = statusMessage;
|
|
|
|
this.isClientError = typeof this.statusCode === 'number' && this.statusCode >= 400 && this.statusCode < 500;
|
2024-01-06 01:40:08 +01:00
|
|
|
this.isRetryable = !this.isClientError || this.statusCode === 429;
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
}
|