Skip to content

Instantly share code, notes, and snippets.

@hvsw
Last active February 15, 2016 05:43
Show Gist options
  • Save hvsw/0694f7414290eb83306a to your computer and use it in GitHub Desktop.
Save hvsw/0694f7414290eb83306a to your computer and use it in GitHub Desktop.
protocol ErrorType {
var _domain: Swift.String { get }
var _code: Swift.Int { get }
}
extension ErrorType {
public var _domain: String {
return String(reflecting: self.dynamicType)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment