forked from Nova-reward/Nova-Rewards
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherrors.ts
More file actions
79 lines (68 loc) · 1.76 KB
/
Copy patherrors.ts
File metadata and controls
79 lines (68 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
export type ErrorType = 'network' | 'server' | 'client' | 'unknown';
export interface AppError {
type: ErrorType;
message: string;
statusCode?: number;
originalError?: Error;
retryable: boolean;
}
export class NetworkError extends Error {
constructor(message: string = 'Network connection failed. Please check your internet connection.') {
super(message);
this.name = 'NetworkError';
}
}
export class ServerError extends Error {
public readonly statusCode: number;
constructor(statusCode: number, message?: string) {
super(message || `Server error (${statusCode}). Please try again later.`);
this.name = 'ServerError';
this.statusCode = statusCode;
}
}
export class ClientError extends Error {
public readonly statusCode: number;
constructor(statusCode: number, message: string) {
super(message);
this.name = 'ClientError';
this.statusCode = statusCode;
}
}
export function getErrorType(error: unknown): AppError {
if (error instanceof NetworkError) {
return {
type: 'network',
message: error.message,
retryable: true,
};
}
if (error instanceof ServerError) {
return {
type: 'server',
message: error.message,
statusCode: error.statusCode,
retryable: error.statusCode >= 500,
};
}
if (error instanceof ClientError) {
return {
type: 'client',
message: error.message,
statusCode: error.statusCode,
retryable: false,
};
}
if (error instanceof Error) {
return {
type: 'unknown',
message: error.message || 'An unexpected error occurred',
originalError: error,
retryable: true,
};
}
return {
type: 'unknown',
message: 'An unexpected error occurred',
retryable: true,
};
}