FilesystemException.php 672 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /*
  3. * This file is part of Composer.
  4. *
  5. * (c) Nils Adermann <naderman@naderman.de>
  6. * Jordi Boggiano <j.boggiano@seld.be>
  7. *
  8. * For the full copyright and license information, please view the LICENSE
  9. * file that was distributed with this source code.
  10. */
  11. namespace Composer\Downloader;
  12. /**
  13. * Exception thrown when issues exist on local filesystem
  14. *
  15. * @author Javier Spagnoletti <jspagnoletti@javierspagnoletti.com.ar>
  16. */
  17. class FilesystemException extends \Exception
  18. {
  19. public function __construct($message = '', $code = 0, \Exception $previous = null)
  20. {
  21. parent::__construct("Filesystem exception: \n".$message, $code, $previous);
  22. }
  23. }