You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// This computed property provides a localized human-readable description of the client error, which is suitable for displaying to users.
134
132
///
135
133
/// - Returns: A localized string describing the client error.
136
-
publicvarerrorDescription:String?{ description }
134
+
publicvarerrorDescription:String?{
135
+
"Client encountered an error invoking the operation \"\(operationID)\", caused by \"\(causeDescription)\", underlying error: \(underlyingError.localizedDescription)."
/// This computed property provides a localized human-readable description of the server error, which is suitable for displaying to users.
107
105
///
108
106
/// - Returns: A localized string describing the server error.
109
-
publicvarerrorDescription:String?{ description }
107
+
publicvarerrorDescription:String?{
108
+
"Server encountered an error handling the operation \"\(operationID)\", caused by \"\(causeDescription)\", underlying error: \(underlyingError.localizedDescription)."
0 commit comments