NativeError

public class NativeError : CustomStringConvertible

Native error information. Immutable class.

  • Create Native error.

    Declaration

    Swift

    public init(message: String?, source: String?, errorCode: Int)
  • Error code.

    Declaration

    Swift

    public let errorCode: Int
  • Error message.

    Declaration

    Swift

    public let message: String?
  • Source of error.

    Declaration

    Swift

    public let source: String?
  • Textual representation.

    Declaration

    Swift

    public var description: String { get }