phase 1 complete

This commit is contained in:
2026-05-06 23:23:36 +02:00
parent def67b14e4
commit 20c60307ba
+4 -4
View File
@@ -11,12 +11,12 @@ async function getCSRFToken(): Promise<string> {
}
export class ApiError extends Error {
constructor(
public readonly status: number,
message: string,
) {
readonly status: number
constructor(status: number, message: string) {
super(message)
this.name = 'ApiError'
this.status = status
}
}