Exception.php 632B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Gedmo;
  3. /**
  4. * Common package exception interface to allow
  5. * users of caching only this package specific
  6. * exceptions thrown
  7. *
  8. * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
  9. * @package Gedmo
  10. * @subpackage Exception
  11. * @link http://www.gediminasm.org
  12. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  13. */
  14. interface Exception
  15. {
  16. /**
  17. * Following best practices for PHP5.3 package exceptions.
  18. * All exceptions thrown in this package will have to implement this interface
  19. *
  20. * @link http://wiki.php.net/pear/rfc/pear2_exception_policy
  21. */
  22. }