Skip to content
This repository was archived by the owner on Jun 4, 2025. It is now read-only.

Commit 99830a5

Browse files
committed
Fix HttpRedirectException not passing message & previous exception to parent
1 parent e179bd8 commit 99830a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Exception/HttpRedirectException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ public function __construct(string $location, int $statusCode = 302, string $mes
2727

2828
parent::__construct($statusCode, [
2929
'Location' => $location
30-
]);
30+
], $message, $previous);
3131
}
3232
}

0 commit comments

Comments
 (0)