Skip to content
Snippets Groups Projects
Select Git revision
  • 6d8016da7726878a0131540c6c6a7f060a69fcad
  • 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

UserSearchView.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
    }