Inner Nested Classes in Java

A class declared inside a class is known as nested class. We use nested classes to logically group classes in…

12 years ago

String In Switch-Java 7 New Concept

In this article we will discuss String in a switch statement; a new feature of Java 7. So for explaining…

12 years ago

Multiple Exceptions In Java 7 New Concept

Introduction In this article we will discuss multiple exceptions in Java 7. Its a new feature released by Java 7…

12 years ago

Different Exception Generate in Array in Java(7)

Introduction In this article we are going to describe the many exceptions that are possibly generated by an array in…

12 years ago

User defined Exception in Java

You can also create your own exception sub class simply by extending java Exception class. You can define a constructor…

12 years ago

Handle exceptions in overriding methods in Java

There are few things to remember when overriding a method with exception handling. If super class method does not declare…

12 years ago

Exception propagation in Java

An exception is first thrown from the top of the stack and if it is not caught, it drops down…

12 years ago