Documentation, format class, no modification. (#7629)

This commit is contained in:
frytimo
2025-11-19 12:48:36 -04:00
committed by GitHub
parent 0ea256fce8
commit 34821bed7e
36 changed files with 12982 additions and 11551 deletions

View File

@@ -32,7 +32,16 @@
* @author Tim Fry <tim@fusionpbx.com>
*/
class invalid_uuid_exception extends Exception {
public function __construct(string $message = "UUID is not valid", int $code = 0, ?\Throwable $previous = null) {
return parent::__construct($message, $code, $previous);
/**
* 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);
}
}