ClientException.php 199 B

1234567891011121314
  1. <?php
  2. namespace PicoFeed\Client;
  3. use PicoFeed\PicoFeedException;
  4. /**
  5. * ClientException Exception.
  6. *
  7. * @author Frederic Guillot
  8. */
  9. abstract class ClientException extends PicoFeedException
  10. {
  11. }