Source for file AbortException.php

Documentation is available at AbortException.php

  1. 1: <?php
  2. 2:  
  3. 3: /**
  4. 4:  * Nette Framework
  5. 5:  *
  6. 6:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  7. 7:  * @license    http://nettephp.com/license  Nette license
  8. 8:  * @link       http://nettephp.com
  9. 9:  * @category   Nette
  10. 10:  * @package    Nette\Application
  11. 11:  */
  12. 12:  
  13. 13:  
  14. 14:  
  15. 15: /**
  16. 16:  * The exception that is thrown when user attempts to terminate the current presenter or application.
  17. 17:  * This is special "silent exception" with no error message or code.
  18. 18:  *
  19. 19:  * @copyright  Copyright (c) 2004, 2010 David Grudl
  20. 20:  * @package    Nette\Application
  21. 21:  */
  22. 22: class AbortException extends Exception
  23. 23: {
  24. 24: }