sfCommandArgumentsException.class.php 611 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) 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: sfCommandArgumentsException.class.php 5175 2007-09-18 12:07:14Z fabien $
  16. */
  17. class sfCommandArgumentsException extends sfCommandException
  18. {
  19. }