For AI agents: visit https://developer.readyremit.com/llms.txt for an index of all pages formatted in Markdown and endpoints in OpenAPI.
public struct PayMittoError: Error {
public init(code: String?, message: String) {
...
}
}
| Property | Type | Description |
|---|
| code | String? | A PayMitto API error code |
| message | String | A user friendly message to present inside the SDK interface |
private let payMittoError: PayMittoError = .init(
code: nil,
message: "An unexpected error occurred. Please try again."
)