The main advantages of the exception-handling mechanism in object oriented programming over the traditional error-handling mechanisms are the following: [Read more…] about Advantages of the Exception-Handling Mechanism
Redirecting and Rethrowing Exceptions in Java
Redirecting exceptions using throws
Recall that the code capable of throwing an exception is kept in the try block and the exceptions are caught in the catch block. When there is no appropriate catch block to handle the (checked) exception that was thrown by an object, the compiler does not compile the program. To overcome this, Java allows the programmer to redirect exceptions that have been raised up the call stack, by using the keyword throws. Thus, an exception thrown by a method can be handled either in the method itself or passed to a different method in the call stack. [Read more…] about Redirecting and Rethrowing Exceptions in Java
Exception and Inheritance in Java
An exception handler designed to handle a specific type of object may be preempted by another handler whose exception type is a super-class of that exception object. This happens if the exception handler for that exception type appears earlier in the list of exception handlers. That is, while using multiple catch statements, it is important to be aware of the order of exception classes and arrange them correctly. [Read more…] about Exception and Inheritance in Java
Unchecked and Checked Exceptions
Based on the severity of the error, Exception classes are categorized into two groups: unchecked exceptions and checked exceptions. Unchecked exceptions are those that can be either handled or ignored. If the programmer ignores an unchecked exception, the program will terminate when such an error occurs. On the other hand, if a handler is provided for an unchecked exception, the result of the occurrence of such an error will depend on the code written in the exception handler. An example of an unchecked exception is the class RuntimeException (and its sub-classes), which is a sub-class of the class Exception. It is a very important class in Java programming. [Read more…] about Unchecked and Checked Exceptions
Constructors and Methods in Throwable Class
Constructors
There are four constructors in the Throwable class:
• Throwable ()
• Throwable (String message) [Read more…] about Constructors and Methods in Throwable Class
Exception Hierarchy in Java
When a condition causes an exception to be thrown, that exception is thrown either by the Java virtual machine or by the Java throw statement. Exceptions are represented by objects instantiated from the class java.lang. Throwable or one of its sub-classes. Java also allows users to define classes that can throw their own (user-defined) exception objects as needed in their design; however, this new class must extend the throwable class or one of its sub-classes. [Read more…] about Exception Hierarchy in Java
Creating Own Exception in Java Example
Java.lang.Exception Class is the superclass for all exceptions in Java. To creating our own extensions, we simply extend this class. [Read more…] about Creating Own Exception in Java Example
ArrayStoreException in Java Example
ArrayStoreException is thrown when ever we storing something in an array. If we store wrong type object into an array then this will be thrown. Here is the Java example which explains this. [Read more…] about ArrayStoreException in Java Example
Chained Exceptions in Java Example
Sometimes a catch block catches one exception type and then throws a new exception with additional information. This is known as chained exception. This feature allows you to associate another exception with an exception. The second exception describes the cause of the firstexception. [Read more…] about Chained Exceptions in Java Example
Defining Your Own Exception Class Java Example
So far you have been using the pre-defined exception classes provided by the Java API. However, if you encounter a problem that cannot be adequately described by the predefined exception classes, you can create your own exception class. [Read more…] about Defining Your Own Exception Class Java Example
Nested Try Statements in Java Examples
So far we have been using just single try statement. However, it is possible to nest a try statement inside another try statement. If one try block does not have a corresponding catch block that handles the exception, Java will search the next outer try block for a catch block that will handle the exception, back through successive nesting. If the Java cannot find the catch block for the exception, it will pass the exception to its default exception handler. [Read more…] about Nested Try Statements in Java Examples
Finally Block in Java with Example
If an exception occurs inside a try block and there is no matching catch block, the method terminates without further executing any lines of code from that method. For example, suppose you may want to close a file that has been opened even if your program could not read from the file for some reason. In other words, you want to close the file irrespective whether the read is successful or not. If you want that some lines of code must be executed regardless of whether or not there is matching catch block, put those lines inside the finally block. [Read more…] about Finally Block in Java with Example
Throws Clause in Java Example
The basic principle of Java error handling mechanism is that an exception must either be handled by the method in which it is raised or passed along the call chain for another method to handle it. Suppose a method throws an exception, that is neither a subclass of RuntimeException nor of Error i.e. if it throws a checked exception, then Java requires that the method either handles it or declares it. If the method does not handle the checked exception then the method must declare it using the throws keyword. [Read more…] about Throws Clause in Java Example
Rethrowing Exceptions Java Example
There might be situations in your program where you want to both catch an exception in your code and also want its caller be notified about the exception. This is possible by rethrowing the exception using throw statement. [Read more…] about Rethrowing Exceptions Java Example
Throw Clause Example in Java
You can also throw an exception explicitly. This is accomplished using the throw statement. A throw statement is executed to indicate that an exception has occurred. The exception that you throw using the throw statement can either be the standard system exception or the one that are created by you. The syntax of throw statement is as follows, [Read more…] about Throw Clause Example in Java
Throwable Class Example in Java
The Throwable class provides the following commonly used methods.
• String getMessage (): It returns the description of the exception. It includes fully qualified name of the Exception class and a brief description of the exception. [Read more…] about Throwable Class Example in Java
Stack Trace in Java Example
When an exception is thrown in your program, you can find the exact statement in your program that caused the exception to occur by examining the lines that are displayed right after the line that indicates which exception was encountered. These lines of information that are displayed when an exception occurs is known as Stack trace. It lists the different methods that the exception passed through before your program was completely aborted. Each line in the stack trace contains not only the method name and the corresponding classname but also the name of the source file that contains the class and the line number where the exception occurred. [Read more…] about Stack Trace in Java Example
Multiple Catch Blocks in Java Example
Typically, code in a try-block can throw more than one kind of exception. If this is the case then you can put several catch blocks after the try block to handle them, one for each possible exception. When an exception is generated, the JVM searches the catch blocks in order. The first catch block with a parameter that matches the exception thrown will execute, any remaining catch blocks will be skipped. [Read more…] about Multiple Catch Blocks in Java Example
DivideByZeroException Java Example
Exception handling is a technique of processing problems that occur during the execution of the program. Using exception handling, we can test the code and avoid it from exiting abruptly. [Read more…] about DivideByZeroException Java Example
What are the causes of exceptions in java
A java exception can be thrown only in the following three scenarios: [Read more…] about What are the causes of exceptions in java
What is an Applet?
We Know that java provides us the facility for both creating CUI and GUI Programs All the Previous Topics are Related with the CUI But Applets Provides the ability to user for creating Graphical Programs Like Creating Buttons, Creating Events such that Executing the Code when a user Clicks on Button Etc. There are two type of Applets Like Stand Alone or either Local Applets. [Read more…] about What is an Applet?
Exception Handling in Java with Examples
Exception handling in Java is a technique of processing problems that occur during the execution of the program. Using exception handling, we can test the code and avoid it from exiting abruptly.
Exception handling in Java is accomplished using five keywords: try, catch, throw, throws and finally.
To understand what exceptions are and how to handle them, let us consider a program that displays two integers’ quotient. [Read more…] about Exception Handling in Java with Examples
Exceptions – What is Exceptions? Type of Exceptions
Exceptions:- Exception is a condition Which is Responsible for Occurrence of Error Like Divide by Zero is an condition that never be possible So we can call it an Exception which halts or stops the Execution of Program In java there is an Exception Class Which is Responsible for producing an Error Message when an Error has occurred. [Read more…] about Exceptions – What is Exceptions? Type of Exceptions
Error – What is Error? Type of Error.
Many Times a Program has to face some errors An Error is an Situation when a Compiler either doesn’t Execute statements or either Compiler will Produce Wrong Result .Various types of Errors are there like :- [Read more…] about Error – What is Error? Type of Error.
Differences Between Applications and Applets
Java is a general-purpose, object-oriented programming language. We can develop two types of Java programs : [Read more…] about Differences Between Applications and Applets