Java / Lombok Interview questions
What is @SneakyThrows used for?
@SneakyThrows lets a method throw a checked exception without declaring it in a
throws clause and without wrapping it in a try/catch — Lombok generates bytecode that throws
the checked exception directly, exploiting the fact that the JVM itself doesn't actually enforce checked
exceptions the way the Java compiler does.
@SneakyThrows public void readFile(String path) { Files.readAllBytes(Paths.get(path)); // IOException is checked, but no throws clause needed here }
It's mainly used to avoid boilerplate try/catch-and-rethrow-as-unchecked patterns, particularly in
functional interfaces (like a lambda passed to Stream.map) where checked exceptions are awkward to
propagate. It's controversial precisely because it bypasses the compiler's checked-exception enforcement,
which some teams consider valuable and don't want circumvented so easily.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
