sfFileException.class.php 699 B

1234567891011121314151617181920212223
  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. * sfFileException is thrown when an error occurs while moving an uploaded file.
  12. *
  13. * @package symfony
  14. * @subpackage exception
  15. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  16. * @author Sean Kerr <sean@code-box.org>
  17. * @version SVN: $Id: sfFileException.class.php 7792 2008-03-09 22:06:59Z fabien $
  18. */
  19. class sfFileException extends sfException
  20. {
  21. }