We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HTTP.Endpoint.ResponseError
1 parent 45cd0b7 commit c0151f7Copy full SHA for c0151f7
src/library/HTTP/Endpoint/ResponseError.ts
@@ -10,7 +10,10 @@ class HTTP_Endpoint_ResponseError
10
> {
11
public readonly status: HTTP_Response.StatusCode.Error.Any;
12
13
- public constructor(givenMessage: string, givenStatus: HTTP_Response.StatusCode.Error.Any) {
+ public constructor(
14
+ givenMessage: string,
15
+ givenStatus: HTTP_Response.StatusCode.Error.Any,
16
+ ) {
17
super(givenMessage);
18
this.name = 'HTTP_Endpoint_ResponseError';
19
this.status = givenStatus;
0 commit comments