Preguntas con la etiqueta [multi-catch]
Lista
multi-catch preguntas
¿Puedo detectar varias excepciones de Java en la misma cláusula de captura?
11
respuestas
862
votos
677.9k
vistas
En Java, quiero hacer algo como esto: try { ... } catch (/* code to catch IllegalArgumentException, SecurityException, IllegalAccessException, and NoSuchFieldException at the same time */) { someCode(); } ...en