phpseclib/phpseclib/Exception/UnsupportedCurveException.php

26 lines
514 B
PHP
Raw Normal View History

2018-10-25 01:00:37 +00:00
<?php
/**
* UnsupportedCurveException
*
* 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;
2018-10-25 01:00:37 +00:00
/**
* UnsupportedCurveException
*
* @author Jim Wigginton <terrafrost@php.net>
*/
class UnsupportedCurveException extends \RuntimeException implements ExceptionInterface
2018-10-25 01:00:37 +00:00
{
}