Exception.php
4 years ago
HttpHeaderException.php
1 year ago
InvalidArgumentException.php
4 years ago
LogicException.php
4 years ago
RuntimeException.php
4 years ago
HttpHeaderException.php
15 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\Exceptions\Primitives; |
| 4 | |
| 5 | use Give\Framework\Exceptions\Contracts\LoggableException; |
| 6 | use Give\Framework\Exceptions\Traits\Loggable; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.3.2 Extends \Exception instead of \HttpHeaderException |
| 10 | */ |
| 11 | class HttpHeaderException extends \Exception implements LoggableException |
| 12 | { |
| 13 | use Loggable; |
| 14 | } |
| 15 |