Skip to content

Commit 64af5c6

Browse files
committed
✨ Implement BadRequestError
1 parent e64d02c commit 64af5c6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

api/error.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,8 @@ export interface SessionError extends ErrorLike {
4747
export interface InvalidURLError extends ErrorLike {
4848
name: "InvalidURLError";
4949
}
50+
51+
/** URL先ページから正常な応答が返ってこなかったときのエラー */
52+
export interface BadRequestError extends ErrorLike {
53+
name: "BadRequestError";
54+
}

0 commit comments

Comments
 (0)