summaryrefslogtreecommitdiff
path: root/src/misc/identifiable-error.ts
blob: 1edd26cd186be8457650bafda63277b50a84fad4 (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;
	}
}