phpseclib/phpseclib/Exception/NoSupportedAlgorithmsException.php

26 lines
529 B
PHP
Raw Permalink Normal View History

<?php
/**
* NoSupportedAlgorithmsException
*
* PHP version 5
*
* @author Jim Wigginton <terrafrost@php.net>
* @copyright 2015 Jim Wigginton
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link http://phpseclib.sourceforge.net
*/
2022-06-04 15:31:21 +00:00
declare(strict_types=1);
namespace phpseclib3\Exception;
/**
* NoSupportedAlgorithmsException
*
* @author Jim Wigginton <terrafrost@php.net>
*/
class NoSupportedAlgorithmsException extends \RuntimeException implements ExceptionInterface
{
}