summaryrefslogtreecommitdiff
path: root/packages/backend/src/misc/identifiable-error.ts
blob: e394123f1bf3b0d87fd681bda8b0e99ad7c2449f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * 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;
	}
}