Spring Boot - Async Processing
Identify the error in this async method that uses
Future and explain why exceptions are not handled properly:
@Async public FutureloadData() { throw new RuntimeException("Failed"); }
