E3dbError
public enum E3dbError: Error
Possible errors encountered from E3db operations
-
A crypto operation failed
Declaration
Swift
case cryptoError(String)
-
Configuration failed
Declaration
Swift
case configError(String)
-
A network operation failed
Declaration
Swift
case networkError(String)
-
JSON parsing failed
Declaration
Swift
case jsonError(expected: String, actual: String)
-
An API request encountered an error
Declaration
Swift
case apiError(code: Int, message: String)
-
Get a human-readable context for the error.
Declaration
Swift
public var description: String