Ejemplo 1: lanzar excepción java io
public static void foo() throws IOException {
// some code here, when something goes wrong, you might do:
throw new IOException("error message");
}
public static void main(String[] args) {
try {
foo();
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
Ejemplo 2: java lanza una excepción en el método
static void testMethod() throws Exception {
String test = null;
test.toString();
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)