Skip to content
Snippets Groups Projects
Select Git revision
  • c6e5e17517b7f6bf4542c8b5db987d86552312aa
  • main default protected
  • development
  • integration
  • v1.1.5
  • v1.1.4
  • v1.1.3
  • v1.1.2
  • v1.1.1
  • v1.1.0
  • v1.0.0
11 results

ClientError.swift

Blame
  • ClientError.swift 276 B
    public struct ClientError: Error, Equatable {
      public init(source: String, message: String, trace: String) {
        self.source = source
        self.message = message
        self.trace = trace
      }
    
      public var source: String
      public var message: String
      public var trace: String
    }