mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-17 01:51:09 +09:00
8d06a6475e
* chore: 著作権とライセンスについての情報を各ファイルに追加する * chore: Add the SPDX information to each file Add copyright and licensing information as defined in version 3.0 of the REUSE Specification. * tweak format --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * chore: Add SPDX-License-Identifier [skip ci] * add missing SPDX-License-Identifier * remove unused file --------- Co-authored-by: Shun Sakai <sorairolake@protonmail.ch> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> Co-authored-by: Chocolate Pie <106949016+chocolate-pie@users.noreply.github.com>
34 lines
927 B
TypeScript
34 lines
927 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
type E = { message: string, code: string, id: string, kind?: 'client' | 'server' | 'permission', httpStatusCode?: number };
|
|
|
|
export class ApiError extends Error {
|
|
public message: string;
|
|
public code: string;
|
|
public id: string;
|
|
public kind: string;
|
|
public httpStatusCode?: number;
|
|
public info?: any;
|
|
|
|
constructor(err?: E | null | undefined, info?: any | null | undefined) {
|
|
if (err == null) err = {
|
|
message: 'Internal error occurred. Please contact us if the error persists.',
|
|
code: 'INTERNAL_ERROR',
|
|
id: '5d37dbcb-891e-41ca-a3d6-e690c97775ac',
|
|
kind: 'server',
|
|
httpStatusCode: 500,
|
|
};
|
|
|
|
super(err.message);
|
|
this.message = err.message;
|
|
this.code = err.code;
|
|
this.id = err.id;
|
|
this.kind = err.kind ?? 'client';
|
|
this.httpStatusCode = err.httpStatusCode;
|
|
this.info = info;
|
|
}
|
|
}
|