* 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 { /** * Constructs a new instance of the class. * * @param string $message The error message. Defaults to "UUID is not valid". * @param int $code The HTTP status code. Defaults to 0. * @param \Throwable|null $previous The previous exception, if any. * * @return void */ public function __construct(string $message = "UUID is not valid", int $code = 0, ?Throwable $previous = null) { parent::__construct($message, $code, $previous); } }