sfStopException.class.php 677 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
  5. *
  6. * For the full copyright and license information, please view the LICENSE
  7. * file that was distributed with this source code.
  8. */
  9. /**
  10. * sfStopException is thrown when you want to stop action flow.
  11. *
  12. * @package symfony
  13. * @subpackage exception
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: sfStopException.class.php 5139 2007-09-16 12:31:07Z fabien $
  16. */
  17. class sfStopException extends sfException
  18. {
  19. /**
  20. * Stops the current action.
  21. */
  22. public function printStackTrace()
  23. {
  24. }
  25. }