RequestException.php
16 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\Http\ConnectServer\Client\Exceptions; |
| 4 | |
| 5 | use Give\Framework\Exceptions\Contracts\LoggableException; |
| 6 | use Give\Framework\Exceptions\Primitives\RuntimeException; |
| 7 | use Give\Framework\Exceptions\Traits\Loggable; |
| 8 | |
| 9 | /** |
| 10 | * @since 2.25.0 |
| 11 | */ |
| 12 | class RequestException extends RuntimeException implements LoggableException |
| 13 | { |
| 14 | use Loggable; |
| 15 | } |
| 16 |