mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 09:03:09 +02:00
c75afad64a
* refreshAccounts Resolve #9322 * アカウント管理画面でリストを更新するように * Update packages/frontend/src/account.ts Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * ✌️ * クライアント起動時は現在ログインしているアカウントのみリフレッシュする * clean up * なんかめっちゃ変えた * refactor * refactor * fix lint --------- Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com>
28 lines
812 B
TypeScript
28 lines
812 B
TypeScript
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;
|
|
}
|
|
}
|