← All changes
|
src/Framework/Exceptions/Primitives/HttpHeaderException.php
+4
-1
2.30.0
→
4.16.9
View file →
| @@ -4,8 +4,11 @@ | ||
| 4 | 4 | |
| 5 | 5 | use Give\Framework\Exceptions\Contracts\LoggableException; |
| 6 | 6 | use Give\Framework\Exceptions\Traits\Loggable; |
| 7 | 7 | |
| 8 | -class HttpHeaderException extends \HttpHeaderException implements LoggableException | |
| 8 | +/** | |
| 9 | + * @since 4.3.2 Extends \Exception instead of \HttpHeaderException | |
| 10 | + */ | |
| 11 | +class HttpHeaderException extends \Exception implements LoggableException | |
| 9 | 12 | { |
| 10 | 13 | use Loggable; |
| 11 | 14 | } |