* @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 { }