Home Answers Viewqa Java-Interview-Questions Java exception handling

 
 


samar
Java exception handling
1 Answer(s)      2 years and 7 months ago
Posted in : Java Interview Questions

What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?
View Answers

October 27, 2010 at 12:32 PM


Hi,

Here is the answer,

The exception propagates up to the next higher level try-catch statement (if any) orresults in the program's termination.

finally block will be executed first before the exception is propagatged to the next level up.

Thanks.









Related Pages:
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling  what is the information of exception handling?   Have a look at the following link: Java Exception Handling
exception handling
exception handling   Give the exception hierarchy of Java.   Please visit the following links: http://www.roseindia.net/java/java-exception/exception-java.shtml http://www.roseindia.net/java/exceptions/exception
exception handling
exception handling  What is an exception and what are the advantages of exception handling mechanism.   Java Exception Exception are the runtime errors. Advantages: 1)Exception provides the means to separate
exception handling
exception handling  can you explain how to handle the exception in java with picture representation
Exception Handling
Exception Handling  wrtie a java program to enable the user to handle any change of divide by zero exception.   Please visit the following link: http://www.roseindia.net/java/exceptions/how-to-throw-exceptions.shtml
exception Handling
exception Handling  write a program in Java to display the names and roll numbrs of students. Initialize respective array variables for 10 students. Handle ArrayIndexOutOfBoundsException, so that any such problem doesn't cause
Java exception handling
Java exception handling  what are the constraints imposed by overriding on exception handling
Exception Handling in java
Exception Handling in java  what is advantage to catch smaller exception first and then normal exception. I mean we normally catch SQLException first and then Exception.   Hi, The exceptions should be from
exception handling mechanism
exception handling mechanism  Explain Java's exception handling...://www.roseindia.net/java/exceptions/exception.shtml http://www.roseindia.net/java/exceptions/catching-and-handling-exceptions.shtml
Exception Handling - Java Beginners
Exception Handling  hi,can u pls make me understand d clear cut difference between throw n throws keyword... n how can we make our own exception..i... want to force an exception then we use throw keyword. the throw keyword is used
Java exception handling
Java exception handling  How does a try statement determine which catch clause should be used to handle an exception
Java exception handling
Java exception handling  How does a try statement determine which catch clause should be used to handle an exception
Java exception handling
Java exception handling  What is the catch or declare rule for method declarations
Java exception handling
Java exception handling  What is the difference between throw and throws keywords
Java exception handling
Java exception handling  What classes of exceptions may be caught by a catch clause
Java exception handling
Java exception handling  Does the order of placing catch statements matter in the catch block
Java exception handling
Java exception handling  What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement
Java Exception - Exception Handling in Java
Java Exception - Exception Handling in Java  ... code you will see that how the exception handling can be done in java program...;}   } } Download Exception Handling
Java null pointer exception handling
Java null pointer exception handling   What is a java.lang.NullPointerException? Why do we use this exception class and when it occurs in any java... pointer exception handling What is Java NullPointerException? In Java
java Exception handling - Java Beginners
java Exception handling  what is the difference between throw and throws keywords
Exception handling - JSP-Servlet
Exception handling  I have added DSN 'online_exam' in Administrative... the following exception type Exception report message description The server.... exception org.apache.jasper.JasperException
Exception Handling in Java
occurred in the program. For more details about exception handling click on the following links Exception Handling in Java Example to show exception handling in java User Defined Exception List of Java Exception Unhandled
Exception Handling
will see that how the exception handling can be done in java program. This example... Exception Handling      .... However, some programming languages like java have mechanisms for handling
java Exception handling - Java Beginners
java Exception handling  what is the difference between throw... an exception manually where as throws is used in the case of checked exceptions to re-intimate the compiler that we have handled the exception. For more information
java exception handling - Java Beginners
java exception handling  hi while i am compailing the program given below i am getting an error please help me as soon as possible import java.io.*; class insufbal extends Exception { public insufbal(String str) { super
How to make a design document for exception handling in java
How to make a design document for exception handling in java  How to make a design document for exception handling
exception handling
exception handling  explain about exception handling
Exception Handling
the exception handling can be done in java program. This example reads two... Exception Handling       Exception, that means exceptional errors. Actually exceptions
Java : Exception Handling
Java : Exception Handling In this section we will discuss about  JAVA Exception Handling with simple example. Exception Handling : An exception... such file which doesn't exist. By default it is handled by java runtime
exception handling
exception handling  could you please tell me detail the concept of exception handling
Exception Handling-Error Messages in Program
Exception Handling-Error Messages in Program  Hi Friend, I am having trouble running this code as per my prior question on Exception handling... java.util.*; class GradeException extends Exception{ public GradeException(String s
java exception handling - Java Interview Questions
java exception handling   hi to all , this afsar i have one doubt.please clarify it. while handling exception write try catch and finally blocks. the scenario is P v S main(---) throws exception { try
Exception handling
Exception handling  how to resolve file not found error exception
Exception Handling
Exception Handling  create an exception class, which thros an exception if operand is non-numeric in claculating modules. ( Use command line arguments
Exception handling
Exception handling  exception are occur at run time but when we connect to the database errors will come at compile time why
exception handling
exception handling  a program to accept only three integer values as command line arguments. Print the values entered by the user. Handle ArrayIndexOutOfBoundsException and NumberFormatException by providing the applied messages
Exception handling in super and subclass while implementing inheritance,,?
Exception handling in super and subclass while implementing inheritance,,?  How to implement Superclass Exceptions with SubClass while implementing Inheritance concept in core java.? Please answer for this with sample code
Exception Handling
Exception Handling  Hi, I really appreciate the help I have gotten,I... for the student. Create an Exception class named GradeException that contains.... In the application, throw a Grade Exception if the user does not enter a valid letter
Exception Handling
Exception Handling  Hi, I really appreciate the help I have gotten,I... for the student. Create an Exception class named GradeException that contains.... In the application, throw a Grade Exception if the user does not enter a valid letter
Using throw keyword in exception handling in Core Java
Description: Core Java Throw Function is used for throwing the exception... exception need to be thrown from the calling method. Code for Java Throw Exception Handling: package exceptionh; import java.io.*; class ExcepHandling1
Exception Handling in Struts.
Exception Handling in Struts.  How you can do Exception Handling in Struts

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.