Buscar..


Cogiendo la excepción con try-catch-finally

La captura de excepciones en Kotlin es muy similar a Java

try {
    doSomething()
} 
catch(e: MyException) {
    handle(e)
} 
finally {
    cleanup()
}

También puedes atrapar múltiples excepciones.

try {
    doSomething()
} 
catch(e: FileSystemException) {
    handle(e)
}
catch(e: NetworkException) {
    handle(e)
}
catch(e: MemoryException) {
    handle(e)
}
finally {
    cleanup()
}    

try también es una expresión y puede devolver valor

val s: String? = try { getString() } catch (e: Exception) { null }

Kotlin no ha comprobado las excepciones, por lo que no tiene que detectar ninguna excepción.

fun fileToString(file: File) : String {
    //readAllBytes throws IOException, but we can omit catching it
    fileContent = Files.readAllBytes(file)
    return String(fileContent)
}


Modified text is an extract of the original Stack Overflow Documentation
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow