标签: ios swift xcode
我在这里有一段代码:
guard port > 0 && port <= Int(UINT16_MAX) else { throw "Invalid port".localized() }
它给了我错误: 抛出的表达式类型'String'不符合'Error' 我该如何解决这个问题?