MimiCoreErrorDetails

public struct MimiCoreErrorDetails : Codable
extension MimiCoreErrorDetails: CustomDebugStringConvertible

Details of a MimiCoreError.

  • Status code of the error.

    Declaration

    Swift

    public let statusCode: Int
  • Raw error string.

    Declaration

    Swift

    public let error: String
  • Message describing the error.

    Declaration

    Swift

    public let message: String?
  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws
  • Declaration

    Swift

    public var debugDescription: String { get }