Skip to content

Commit

Permalink
fix(dynamite_runtime): Remove duplicate status code from DynamiteStat…
Browse files Browse the repository at this point in the history
…usCodeException message

Signed-off-by: provokateurin <kate@provokateurin.de>
  • Loading branch information
provokateurin committed Apr 14, 2024
1 parent 49008f8 commit bba2fb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class DynamiteStatusCodeException extends DynamiteApiException {
Map<String, Object?>? headers,
Object? body,
Uri? url,
}) : super('Invalid status code $statusCode, $statusCode, headers: $headers, body: $body', url);
}) : super('Invalid status code $statusCode, headers: $headers, body: $body', url);

/// The returned status code when the exception was thrown.
final int statusCode;
Expand Down

0 comments on commit bba2fb4

Please sign in to comment.