-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
// SPDX-FileCopyrightText: 2025 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
/**
* ユーザの入力に対するエラー。
* そのまま表示するもの。
*/
export class UserInputError extends Error {
constructor(message: string) {
super(message);
}
}