phpseclib/phpseclib/Exception/UnsupportedAlgorithmException.php
2022-07-02 16:26:15 -05:00

26 lines
496 B
PHP

<?php
/**
* UnsupportedAlgorithmException
*
* 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
*/
declare(strict_types=1);
namespace phpseclib3\Exception;
/**
* UnsupportedAlgorithmException
*
* @author Jim Wigginton <terrafrost@php.net>
*/
class UnsupportedAlgorithmException extends \RuntimeException
{
}