Warning
This class represents a warning message generated during a system check. It inherits from the base message class and automatically assigns a severity level of WARNING to indicate non-critical issues that should be addressed.
Constructor
Signature
def Warning(
*args: any,
**kwargs: any
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| *args | any | Variable length argument list passed to the parent constructor. |
| **kwargs | any | Arbitrary keyword arguments passed to the parent constructor. |
Signature
def Warning(
*args: any,
**kwargs: any
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| *args | any | Positional arguments passed to the CheckMessage constructor, typically including the message text and a unique identifier. |
| **kwargs | any | Keyword arguments passed to the CheckMessage constructor, such as the object or hint associated with the warning. |