| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaHttp\Client\Exception; |
| 4 | |
| 5 | use AmeliaHttp\Client\Exception; |
| 6 | |
| 7 | /** |
| 8 | * Base exception for transfer related exceptions. |
| 9 | * |
| 10 | * @author Márk Sági-Kazár <mark.sagikazar@gmail.com> |
| 11 | */ |
| 12 | class TransferException extends \RuntimeException implements Exception |
| 13 | { |
| 14 | } |
| 15 |