Skip to content

Commit c0151f7

Browse files
committed
refactor(library/HTTP): preps HTTP.Endpoint.ResponseError for parameter change
1 parent 45cd0b7 commit c0151f7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/library/HTTP/Endpoint/ResponseError.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ class HTTP_Endpoint_ResponseError
1010
> {
1111
public readonly status: HTTP_Response.StatusCode.Error.Any;
1212

13-
public constructor(givenMessage: string, givenStatus: HTTP_Response.StatusCode.Error.Any) {
13+
public constructor(
14+
givenMessage: string,
15+
givenStatus: HTTP_Response.StatusCode.Error.Any,
16+
) {
1417
super(givenMessage);
1518
this.name = 'HTTP_Endpoint_ResponseError';
1619
this.status = givenStatus;

0 commit comments

Comments
 (0)