mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-19 10:28:40 -06:00
c1514ce91d
Fix #13290
18 lines
342 B
TypeScript
18 lines
342 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
/**
|
|
* 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;
|
|
}
|
|
}
|