We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 388e984 commit e64d02cCopy full SHA for e64d02c
api/error.ts
@@ -39,3 +39,11 @@ export interface NotLoggedInError extends ErrorLike {
39
export interface SessionError extends ErrorLike {
40
name: "SessionError";
41
}
42
+
43
+/** 不正なURLを渡したときに返ってくるエラー
44
+ *
45
+ * 実際のresponseではmessageしか返ってこないことに注意
46
+ */
47
+export interface InvalidURLError extends ErrorLike {
48
+ name: "InvalidURLError";
49
+}
0 commit comments