mirror of
https://github.com/ramsey/uuid.git
synced 2026-06-20 16:57:36 +03:00
0d7b8c2b7a
This also includes heavy use of slevomat/coding-standard to apply various checks to the code, based on maintainer (me) preference.
25 lines
538 B
PHP
25 lines
538 B
PHP
<?php
|
|
|
|
/**
|
|
* This file is part of the ramsey/uuid library
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*
|
|
* @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
|
|
* @license http://opensource.org/licenses/MIT MIT
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Ramsey\Uuid\Exception;
|
|
|
|
use InvalidArgumentException;
|
|
|
|
/**
|
|
* Thrown to indicate that the parsed UUID string is invalid.
|
|
*/
|
|
class InvalidUuidStringException extends InvalidArgumentException
|
|
{
|
|
}
|