NoSupportedAlgorithmsException.php 584 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * NoSupportedAlgorithmsException
  4. *
  5. * PHP version 5
  6. *
  7. * @category Exception
  8. * @package NoSupportedAlgorithmsException
  9. * @author Jim Wigginton <terrafrost@php.net>
  10. * @copyright 2015 Jim Wigginton
  11. * @license http://www.opensource.org/licenses/mit-license.html MIT License
  12. * @link http://phpseclib.sourceforge.net
  13. */
  14. namespace phpseclib\Exception;
  15. /**
  16. * NoSupportedAlgorithmsException
  17. *
  18. * @package NoSupportedAlgorithmsException
  19. * @author Jim Wigginton <terrafrost@php.net>
  20. */
  21. class NoSupportedAlgorithmsException extends \RuntimeException
  22. {
  23. }