2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
/**
|
|
|
|
* ID付きエラー
|
|
|
|
*/
|
|
|
|
export class IdentifiableError extends Error {
|
|
|
|
public message: string;
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
constructor(id: string, message?: string) {
|
|
|
|
super(message);
|
2022-09-17 18:27:08 +00:00
|
|
|
this.message = message ?? '';
|
2019-02-22 02:46:58 +00:00
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
}
|