Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to handle an exception using lambda expression in Java?\\n
A lambda expression body can't throw any exceptions that haven't specified in a functional interface. If the lambda expression can throw an exception then the "throws" clause of a functional interface must declare the same exception or one of its subtype.
Example
interface Student {
void studentData(String name) throws Exception;
}
public class LambdaExceptionTest {
public static void main(String[] args) {
// lamba expression
Student student = name -> {
System.out.println("The Student name is: " + name);
throw new Exception();
};
try {
student.studentData("Adithya");
} catch(Exception e) {
}
}
}
Output
The Student name is: Adithya
Advertisements