Java : ExecutionException con ejemplos
ExecutionException (Java SE 23 & JDK 23) en Java con ejemplos.
Encontrará muestras de código para la mayoría de los métodos ExecutionException.
Nota :
- Este artículo puede utilizar software de traducción para su comodidad. Consulte también la versión original en inglés.
Summary
try (final var executor = Executors.newSingleThreadExecutor()) {
final var future = executor.submit(() -> {
System.out.println("task : start");
throw new IllegalStateException("task error!");
});
future.get();
} catch (ExecutionException e) {
System.out.println("ExecutionException! : " + e.getCause());
}
// Result
// ↓
//task : start
//ExecutionException! : java.lang.IllegalStateException: task error!
Constructors
ExecutionException ()
protected. I think it's rare to create a subclass of this class. Therefore, the code example is omitted.
ExecutionException (String message)
protected. I think it's rare to create a subclass of this class. Therefore, the code example is omitted.
ExecutionException (String message, Throwable cause)
final var cause = new IOException("XYZ");
final var e = new ExecutionException("abcd", cause);
System.out.println(e); // java.util.concurrent.ExecutionException: abcd
System.out.println(e.getMessage()); // abcd
System.out.println(e.getCause()); // java.io.IOException: XYZ
System.out.println(e.getCause().getMessage()); // XYZ
ExecutionException (Throwable cause)
final var cause = new IOException("XYZ");
final var e = new ExecutionException(cause);
// java.util.concurrent.ExecutionException: java.io.IOException: XYZ
System.out.println(e);
System.out.println(e.getCause()); // java.io.IOException: XYZ
System.out.println(e.getCause().getMessage()); // XYZ
Methods declared in Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
Consulte el siguiente enlace.
Related posts
- Ejemplos de API