how to handle exceptions in core applications?
Answers were Sorted based on User's Feedback
in core java, we can handle the exception by the following
key words
1.try
2.catch
3.finally
4.throws(it throws only predefined exception)
5.throw(it throw both predefined and userdefined exception)
Is This Answer Correct ? | 9 Yes | 0 No |
Answer / laxmi
In core applications we can handle the exceptions by using
try &catch blocks.
ex:
class excep
{
public static void main(String[] args)
{
try
{
System.out.println(2/0);
}
catch(Exception e)
{
System.out.println(e);
}
}
}
Is This Answer Correct ? | 2 Yes | 0 No |
How to add menushortcut to menu item?
What are static methods?
why java does not have operator overloading?
What is Remote Interface ?
Is null or empty java?
What happens when a main method is declared as private?
22 Answers DELL, Infosys, L&T, Sun Microsystems,
Is arraylist ordered?
Why runnable interface is used in java?
Differentiate between postfix and prefix operators in java.
What is Session and cookies?Explain in detail with an example?
Can you call a method on a null object?
What is java virtual machine? Explain