Skip to content

Commit

Permalink
Merge pull request #75 from RonasIT/61-change-exception-message-major
Browse files Browse the repository at this point in the history
style: change InvalidJSONFormatException message text
  • Loading branch information
DenTray authored Jun 20, 2023
2 parents 598f033 + a55ca3f commit e24b287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exceptions/InvalidJSONFormatException.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class InvalidJSONFormatException extends Exception
{
public function __construct(string $response)
{
parent::__construct("Response contains invalid JSON.\nReceived response: '{$response}'");
parent::__construct("Response contains invalid JSON. Received response: '{$response}'");
}
}

0 comments on commit e24b287

Please sign in to comment.