mirror of
https://github.com/danog/tgseclib.git
synced 2024-11-30 04:39:02 +01:00
27 lines
578 B
PHP
27 lines
578 B
PHP
<?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
|
|
*/
|
|
|
|
namespace tgseclib\Exception;
|
|
|
|
/**
|
|
* UnsupportedOperationException
|
|
*
|
|
* @package UnsupportedOperationException
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
*/
|
|
class UnsupportedOperationException extends \RuntimeException
|
|
{
|
|
}
|