987168b863
* wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
13 lines
238 B
TypeScript
13 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;
|
|
}
|
|
}
|