mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-15 16:07:55 +03:00
20 lines
483 B
PHP
20 lines
483 B
PHP
<?php
|
|
/**
|
|
* This file is part of the Rhumsaa\Uuid library
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* @copyright Copyright (c) 2012 Ben Ramsey <http://benramsey.com>
|
|
* @license http://opensource.org/licenses/MIT MIT
|
|
*/
|
|
|
|
namespace Rhumsaa\Uuid;
|
|
|
|
/**
|
|
* Thrown to indicate that the requested operation is not supported.
|
|
*/
|
|
class UnsupportedOperationException extends \RuntimeException
|
|
{
|
|
}
|