Skip to content

Commit 0fc0b63

Browse files
Comment feedback fix
1 parent 92c1aec commit 0fc0b63

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Sources/DataConnectError.swift

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,18 @@ public struct DataConnectCodecError: DataConnectDomainError {
173173

174174
// MARK: - Operation Execution Error including Partial Errors
175175

176-
/// Data Connect Operation Failed
176+
/// An error that occurs during the execution of a Data Connect operation.
177+
///
178+
/// This error can arise due to various reasons, such as network issues, server-side errors,
179+
/// or problems with the operation itself. It may include an optional underlying error,
180+
/// a message describing the failure, and an optional response from the failed operation.
181+
///
177182
/// When available, the ``response`` will contain more error information and any partially decoded
178183
/// result
184+
///
185+
/// - SeeAlso: `DataConnectError` for the base error type.
186+
///
187+
179188
public struct DataConnectOperationError: DataConnectError {
180189
public let message: String?
181190
public let underlyingError: (any Error)?

0 commit comments

Comments
 (0)