Skip to content

Commit f6fd084

Browse files
authored
fix(checkins): read error message from response body (#224)
1 parent 534634c commit f6fd084

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

src/Exceptions/ServiceException.php

+9
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,13 @@ public static function missingPersonalAuthToken(): self
8585
{
8686
return new static("Missing personal auth token. This token is required to use Honeybadger's Data APIs.");
8787
}
88+
89+
/**
90+
* @param string $message
91+
* @return self
92+
*/
93+
public static function withMessage(string $message): self
94+
{
95+
return new static($message);
96+
}
8897
}

src/Exceptions/ServiceExceptionFactory.php

+13
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,19 @@ public function make(bool $isFromEventsApi = false): ServiceException
2727

2828
private function exception(bool $isFromEventsApi = false): ServiceException
2929
{
30+
try {
31+
$message = $this->response->getBody()->getContents();
32+
if (!empty($message)) {
33+
$data = json_decode($message, true);
34+
if (isset($data['errors'])) {
35+
return ServiceException::withMessage($data['errors']);
36+
}
37+
}
38+
} catch (\Exception $e) {
39+
// Do nothing
40+
// Fallback to default error messages based on status code
41+
}
42+
3043
if ($this->response->getStatusCode() === Response::HTTP_FORBIDDEN) {
3144
return ServiceException::invalidApiKey();
3245
}

0 commit comments

Comments
 (0)