File tree 2 files changed +22
-0
lines changed
2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -85,4 +85,13 @@ public static function missingPersonalAuthToken(): self
85
85
{
86
86
return new static ("Missing personal auth token. This token is required to use Honeybadger's Data APIs. " );
87
87
}
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
+ }
88
97
}
Original file line number Diff line number Diff line change @@ -27,6 +27,19 @@ public function make(bool $isFromEventsApi = false): ServiceException
27
27
28
28
private function exception (bool $ isFromEventsApi = false ): ServiceException
29
29
{
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
+
30
43
if ($ this ->response ->getStatusCode () === Response::HTTP_FORBIDDEN ) {
31
44
return ServiceException::invalidApiKey ();
32
45
}
You can’t perform that action at this time.
0 commit comments