TransferException.php 263 B

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