1
0
mirror of https://github.com/hotomoe/hotomoe synced 2024-12-20 09:38:07 +09:00
hotomoe/packages/backend/src/misc/identifiable-error.ts
2022-09-18 03:27:08 +09:00

14 lines
238 B
TypeScript

/**
* ID付きエラー
*/
export class IdentifiableError extends Error {
public message: string;
public id: string;
constructor(id: string, message?: string) {
super(message);
this.message = message ?? '';
this.id = id;
}
}