how can u handle run time exception in java? explain with
brief explanation with examples?
Answer Posted / pavithra
public class ExceptionalClass {
public void method1() throws CheckedException {
// ... some code
throw new CheckedException( "something bad
happened" );
}
public void method2( String arg ) {
if( arg == null ) {
throw new NullPointerException( "arg passed to
method2 is null" );
}
}
public void method3() throws CheckedException {
method1();
}
}
Contrast method1() with method2(). When you
make a call to method2(), you don't have to do so within a
try/catch block. Since you do not have to catch the
exception, the exception is said to be unchecked; it is a
runtime exception. A method that throws a runtime exception
need not declare the exception in its signature.
Is This Answer Correct ? | 9 Yes | 3 No |
Post New Answer View All Answers
Explain about features of local inner class?
Name the components that are termed to be Heavy-weight component but available in Light-weight components?
Can we assign integer value to char in java?
Is 0 a real number?
Explain the difference between map and flatmap stream operation?
What is the purpose of java?
How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?
Why we override equals() method?
How to make a class or a bean serializable?
What is final method in java?
What is a boolean field?
What is gui programming?
What does || mean in code?
What is java virtual machine and how it is considered in context of java’s platform independent feature?
How would you convert bytes to string?