Home / DeveloperSection / Tag
You haven’t finished your post yet. Are you sure you want to leave and discard your draft?
Exception Handling are the mechanism to handle the running errors so that the normal flow of the application can be maintained.
One of the important set of classes comprised in Java API is the java.io package. This is one of the core packages of the Java language and was a part of JDK 1.0. These classes facilitate the input/output functionality in our programs.
As seen in the previous post, we need to construct an instance of a user-defined exception; the Java runtime cannot detect and create instances of user-defined exceptions.
Sometimes we may find that the exception messages given by the standard exception classes are not intuitive, and it may be necessary to provide more elaborate messages to the application user.
Let’s recall the rules we learn from previous post about declaring exception in Overriding Methods.
We may have a finally block in conjunction with a try block without a catch block. In other words
In every program, things go wrong sometimes. With C#, we're blessed with a good compiler, which will help us prevent some of the most common mistakes.
Handling of error occurring at Run-time is known as Exception handling. Exception handling is a way to prevent application from crashing. C# provides three keywords to handle exceptions.