What happens to an unhandled exception ?


One can not do anytihng in this scenarion. Because Java does not allow multiple inheritance and does not provide any exception interface as well.



Explore posts in the same categories: Java Interview Questions


BOOKMARK THIS : del.icio.us | Digg it | Furl | reddit |


Related Questions :

  • How does an exception permeate through the code?
  • An unhandled exception moves up the method stack in search of a matching When an exception is thrown from a...
  • What is Structured Exception Handling?
  • Structured Exception handling is a fundamental part of the CLR, and provides .NET programmers with a great way of managing...
  • What are Checked and UnChecked Exception?
  • A checked exception is some subclass of Exception (or Exception itself), excluding class RuntimeException and its subclasses. Making an exception checked...
  • What are Checked and UnChecked Exception?
  • A checked exception is some subclass of Exception (or Exception itself), excluding class RuntimeException and its subclasses. Making an exception checked...
  • Can we define our OWN EXCEPTION ? How to raise it ?
  • In the DECLARATION part define a variable of type exception. In the excecution part call the exception using RAISE exception_name....
  • What’s the C# syntax to catch any possible exception?
  • A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in...
  • What’s the C# syntax to catch any possible exception?
  • A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in...
  • What’s the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception ?
  • A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this...
  • What’s the C# equivalent of C++ catch (…), which was a catch-all statement for any possible exception ?
  • A catch block that catches the exception of type System.Exception. You can also omit the parameter data type in this...
  • How can we Handle Exception in VB.Net?
  • Vb.Net provides two ways to handle exceptions i) Structured Exception Handling ii)Unstructured Exception Handling...

    Comments are closed.