Skip to content

Commit 21e8e6d

Browse files
chore(types): nicer error class types + jsdocs (#84)
1 parent 4ca46db commit 21e8e6d

File tree

1 file changed

+24
-40
lines changed

1 file changed

+24
-40
lines changed

src/error.ts

+24-40
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ import { castToError, Headers } from './core';
44

55
export class OpenlayerError extends Error {}
66

7-
export class APIError extends OpenlayerError {
8-
readonly status: number | undefined;
9-
readonly headers: Headers | undefined;
10-
readonly error: Object | undefined;
11-
12-
constructor(
13-
status: number | undefined,
14-
error: Object | undefined,
15-
message: string | undefined,
16-
headers: Headers | undefined,
17-
) {
7+
export class APIError<
8+
TStatus extends number | undefined = number | undefined,
9+
THeaders extends Headers | undefined = Headers | undefined,
10+
TError extends Object | undefined = Object | undefined,
11+
> extends OpenlayerError {
12+
/** HTTP status for the response that caused the error */
13+
readonly status: TStatus;
14+
/** HTTP headers for the response that caused the error */
15+
readonly headers: THeaders;
16+
/** JSON body of the response that caused the error */
17+
readonly error: TError;
18+
19+
constructor(status: TStatus, error: TError, message: string | undefined, headers: THeaders) {
1820
super(`${APIError.makeMessage(status, error, message)}`);
1921
this.status = status;
2022
this.headers = headers;
@@ -48,7 +50,7 @@ export class APIError extends OpenlayerError {
4850
message: string | undefined,
4951
headers: Headers | undefined,
5052
): APIError {
51-
if (!status) {
53+
if (!status || !headers) {
5254
return new APIConnectionError({ message, cause: castToError(errorResponse) });
5355
}
5456

@@ -90,17 +92,13 @@ export class APIError extends OpenlayerError {
9092
}
9193
}
9294

93-
export class APIUserAbortError extends APIError {
94-
override readonly status: undefined = undefined;
95-
95+
export class APIUserAbortError extends APIError<undefined, undefined, undefined> {
9696
constructor({ message }: { message?: string } = {}) {
9797
super(undefined, undefined, message || 'Request was aborted.', undefined);
9898
}
9999
}
100100

101-
export class APIConnectionError extends APIError {
102-
override readonly status: undefined = undefined;
103-
101+
export class APIConnectionError extends APIError<undefined, undefined, undefined> {
104102
constructor({ message, cause }: { message?: string | undefined; cause?: Error | undefined }) {
105103
super(undefined, undefined, message || 'Connection error.', undefined);
106104
// in some environments the 'cause' property is already declared
@@ -115,32 +113,18 @@ export class APIConnectionTimeoutError extends APIConnectionError {
115113
}
116114
}
117115

118-
export class BadRequestError extends APIError {
119-
override readonly status: 400 = 400;
120-
}
116+
export class BadRequestError extends APIError<400, Headers> {}
121117

122-
export class AuthenticationError extends APIError {
123-
override readonly status: 401 = 401;
124-
}
118+
export class AuthenticationError extends APIError<401, Headers> {}
125119

126-
export class PermissionDeniedError extends APIError {
127-
override readonly status: 403 = 403;
128-
}
120+
export class PermissionDeniedError extends APIError<403, Headers> {}
129121

130-
export class NotFoundError extends APIError {
131-
override readonly status: 404 = 404;
132-
}
122+
export class NotFoundError extends APIError<404, Headers> {}
133123

134-
export class ConflictError extends APIError {
135-
override readonly status: 409 = 409;
136-
}
124+
export class ConflictError extends APIError<409, Headers> {}
137125

138-
export class UnprocessableEntityError extends APIError {
139-
override readonly status: 422 = 422;
140-
}
126+
export class UnprocessableEntityError extends APIError<422, Headers> {}
141127

142-
export class RateLimitError extends APIError {
143-
override readonly status: 429 = 429;
144-
}
128+
export class RateLimitError extends APIError<429, Headers> {}
145129

146-
export class InternalServerError extends APIError {}
130+
export class InternalServerError extends APIError<number, Headers> {}

0 commit comments

Comments
 (0)