NullPointerException

NullPointerException is a child class of RunTimeException, Hence it is an unchecked exception, Raised automatically by JVM, Whenever we are …

Read more

ArrayIndexOutOfBoundsException

ArrayIndexOutOfBoundsException is a child class of RunTimeException in Java, Hence it is an unchecked exception and is raised automatically by …

Read more

Exceptions in Java

In Java, how an exception is raised we can divide exceptions into two categories- JVM Exceptions Exceptions raised by JVM …

Read more

User Defined Exception in Java

Sometimes for our programming requirements, we need to create our exceptions, such types of exceptions are known as user-defined exceptions …

Read more

throw throws in Java

throw in Java We can create an exception object explicitly and we can hand over this exception object to JVM …

Read more