* Portions created by the Initial Developer are Copyright (C) 2008-2025 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Mark J Crane * Tim Fry */ /** * Description of invalid_uuid * * @author Tim Fry */ class invalid_uuid_exception extends Exception { public function __construct(string $message = "UUID is not valid", int $code = 0, ?\Throwable $previous = null): \Exception { return parent::__construct($message, $code, $previous); } }