sfCommandException.class.php 596 B

123456789101112131415161718192021
  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. * sfCommandException is thrown when an error occurs in a task.
  11. *
  12. * @package symfony
  13. * @subpackage exception
  14. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  15. * @version SVN: $Id: sfCommandException.class.php 4743 2007-07-30 10:21:06Z fabien $
  16. */
  17. class sfCommandException extends sfException
  18. {
  19. }