rudeshark.net/src/misc/identifiable-error.ts

14 lines
232 B
TypeScript
Raw Normal View History

/**
* 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;
}
}