SolanaError - p2p-org/solana-swift GitHub Wiki
SolanaError
public enum SolanaError: Swift.Error, Equatable
Inheritance
Equatable
, Swift.Error
Enumeration Cases
unauthorized
case unauthorized
notFound
case notFound
assertionFailed
case assertionFailed
invalidRequest
case invalidRequest(reason: String? = nil)
invalidResponse
case invalidResponse(ResponseError)
transactionError
case transactionError(ErrorDetail, logs: [String])
socket
case socket(Swift.Error)
other
case other(String)
unknown
case unknown
Properties
couldNotRetrieveAccountInfo
public static var couldNotRetrieveAccountInfo: Self
couldNotRetrieveBuffer
public static var couldNotRetrieveBuffer: Self
Operators
==
public static func == (lhs: SolanaError, rhs: SolanaError) -> Bool