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