We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd9d51a commit dab20c0Copy full SHA for dab20c0
Exception/Http/HttpExceptionTrait.php
@@ -78,6 +78,9 @@ public function __construct(ResponseInterface $response)
78
// see RFC 7807 and https://jsonapi.org/format/#error-objects
79
$separator = isset($body['title'], $body['detail']) ? "\n\n" : '';
80
$message = ($body['title'] ?? '') . $separator . ($body['detail'] ?? '');
81
+ } elseif (isset($body['message'])) {
82
+ $this->awsMessage = $body['message'];
83
+ $message .= "\n\n" . $body['message'] . "\n\n";
84
}
85
} else {
86
try {
0 commit comments