public enum ErrorSeverity : IntRepresents the severity level of an error, indicating how critical the error is and what kind of action may be needed.
public enum ErrorSeverity : IntRepresents the severity level of an error, indicating how critical the error is and what kind of action may be needed.
A warning indicates a minor issue that does not prevent normal operation but should be noted or logged.
Swift
case warning = 1Recoverable errors indicate an issue that caused a failure but the system can recover from it without terminating the operation.
Swift
case recoverable = 2Fatal errors are critical issues that prevent further operation, usually requiring termination or restart of the affected component.
Swift
case fatal = 3