sfControllerException.class.php 726 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 2004-2006 Fabien Potencier <fabien.potencier@symfony-project.com>
  5. * (c) 2004-2006 Sean Kerr <sean@code-box.org>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. /**
  11. * sfControllerException is thrown when a requested Controller implementation
  12. * doesn't exist.
  13. *
  14. * @package symfony
  15. * @subpackage exception
  16. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  17. * @author Sean Kerr <sean@code-box.org>
  18. * @version SVN: $Id: sfControllerException.class.php 7792 2008-03-09 22:06:59Z fabien $
  19. */
  20. class sfControllerException extends sfException
  21. {
  22. }