修复一个apiError的错误

This commit is contained in:
2025-05-13 11:58:16 +08:00
parent 088e168460
commit c6cc3a7098

View File

@@ -7,7 +7,7 @@ export interface StanderResponse<T> {
export class ApiError extends Error {
constructor(
public statusCode: number,
message: string,
public message: string,
public data?: unknown,
) {
super(message);