Exception.php 489 B

1234567891011121314151617181920
  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. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  10. */
  11. interface Exception
  12. {
  13. /**
  14. * Following best practices for PHP5.3 package exceptions.
  15. * All exceptions thrown in this package will have to implement this interface
  16. *
  17. */
  18. }