2018-02-15 12:29:14 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UnsupportedOperationException
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* @category Exception
|
|
|
|
* @package UnsupportedOperationException
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2019-12-18 14:00:20 +01:00
|
|
|
namespace tgseclib\Exception;
|
2018-02-15 12:29:14 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* UnsupportedOperationException
|
|
|
|
*
|
|
|
|
* @package UnsupportedOperationException
|
|
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
|
|
*/
|
|
|
|
class UnsupportedOperationException extends \RuntimeException
|
|
|
|
{
|
|
|
|
}
|