phpseclib/phpseclib/Exception/UnableToConnectException.php

26 lines
511 B
PHP
Raw Permalink Normal View History

2019-09-11 12:55:29 +00:00
<?php
/**
* UnableToConnectException
*
* 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;
2019-09-11 12:55:29 +00:00
/**
* UnableToConnectException
*
* @author Jim Wigginton <terrafrost@php.net>
*/
class UnableToConnectException extends \RuntimeException implements ExceptionInterface
2019-09-11 12:55:29 +00:00
{
}