Skip to content

Commit aae0953

Browse files
committed
✨ Add NotPrivilegeError
1 parent f34c7f4 commit aae0953

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
@@ -13,3 +13,8 @@ export interface NotMemberError extends ErrorLike {
1313
export interface NotFoundError extends ErrorLike {
1414
name: "NotFoundError";
1515
}
16+
17+
/** owner/admin権限が不足しているときに発生するエラー */
18+
export interface NotPrivilegeError extends ErrorLike {
19+
name: "NotPrivilegeError";
20+
}

0 commit comments

Comments
 (0)