Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make the error messages readable #370

Merged
merged 7 commits into from
Jul 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions Sources/XMTPiOS/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import web3

public typealias PreEventCallback = () async throws -> Void

public enum ClientError: Error, CustomStringConvertible {
public enum ClientError: Error, CustomStringConvertible, LocalizedError {
case creationError(String)
case noV3Client(String)

Expand All @@ -23,6 +23,10 @@ public enum ClientError: Error, CustomStringConvertible {
return "ClientError.noV3Client: \(err)"
}
}

public var errorDescription: String? {
return description
}
}

/// Specify configuration options for creating a ``Client``.
Expand Down Expand Up @@ -128,7 +132,13 @@ public final class Client {
)
return try await create(account: account, apiClient: apiClient, options: options)
} catch {
throw ClientError.creationError("\(error)")
let detailedErrorMessage: String
if let nsError = error as NSError? {
detailedErrorMessage = nsError.description
} else {
detailedErrorMessage = error.localizedDescription
}
throw ClientError.creationError(detailedErrorMessage)
}
}

Expand Down
Loading