IncludeException.php 429 B

123456789101112131415161718
  1. <?php
  2. /** @package verysimple::Phreeze */
  3. /**
  4. * NotFoundExeption is thrown when a persisted object is requsted by primary key
  5. * but does not exist in the data store
  6. *
  7. * @package verysimple::Phreeze
  8. * @author VerySimple Inc.
  9. * @copyright 1997-2007 VerySimple, Inc.
  10. * @license http://www.gnu.org/licenses/lgpl.html LGPL
  11. * @version 2.0
  12. */
  13. class IncludeException extends Exception
  14. {
  15. }
  16. ?>