NotFound.php 470 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Dropbox Not Found exception
  4. *
  5. * @package Dropbox
  6. * @copyright Copyright (C) 2010 Rooftop Solutions. All rights reserved.
  7. * @author Evert Pot (http://www.rooftopsolutions.nl/)
  8. * @license http://code.google.com/p/dropbox-php/wiki/License MIT
  9. */
  10. /**
  11. * This exception is thrown when a non-existant uri is accessed.
  12. *
  13. * Basically, this exception is used when we get back a 404.
  14. */
  15. class Dropbox_Exception_NotFound extends Dropbox_Exception {
  16. }