NoAdapterException.php 646 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * PHP Exif Reader Adapter Interface: Defines the interface for reader adapters
  4. *
  5. * @link http://github.com/miljar/PHPExif for the canonical source repository
  6. * @copyright Copyright (c) 2013 Tom Van Herreweghe <tom@theanalogguy.be>
  7. * @license http://github.com/miljar/PHPExif/blob/master/LICENSE MIT License
  8. * @category PHPExif
  9. * @package Reader
  10. * @codeCoverageIgnore
  11. */
  12. namespace PHPExif\Adapter;
  13. use Exception;
  14. /**
  15. * PHP Exif Reader Adapter
  16. *
  17. * Defines the interface for reader adapters
  18. *
  19. * @category PHPExif
  20. * @package Reader
  21. */
  22. class NoAdapterException extends Exception
  23. {
  24. //empty
  25. }