iOS Swift - Swift Language Essentials
Identify the error in this Swift code snippet:
func readFile() throws -> String {
// code
}
let content = readFile()
print(content)