अपवाद प्रबंधन Java

⚡ स्मार्ट सारांश

Java Exception Handling provides a structured mechanism to manage runtime errors that disrupt normal program flow. It uses try, catch, finally, throw, and throws keywords to detect, isolate, and recover from exceptional conditions while keeping applications robust and predictable.

  • ⚠️ Exception Defined: An exception is a runtime event that interrupts the standard execution sequence and is represented as an object describing the error condition.
  • 🧯 Try Catch Block: Wrap risky code inside a try block and follow it with one or more catch blocks to capture specific exception types gracefully.
  • 🔁 Finally Behavior: The finally block always executes after try and catch, making it ideal for closing files, sockets, or releasing other system resources.
  • Exception Hierarchy: All exceptions inherit from Throwable, which branches into Error and Exception, with RuntimeException covering unchecked cases such as divide by zero.
  • 🧪 सर्वोत्तम प्रथाएं: Catch the most specific exception first, avoid empty catch blocks, log meaningful messages, and use multi-catch to keep code concise and maintainable.

अपवाद प्रबंधन Java

What is an Exception in Java?

An अपवाद Java is an event that interrupts the execution of program instructions and disturbs the normal flow of program execution. It is an object that wraps an error event information that occurred within a method, and it is passed to the runtime system. In Java, exceptions are mainly used to signal different types of error conditions so that developers can respond to them in a controlled way.

There are two broad categories of errors in Java:

  1. संकलन समय त्रुटियाँ
  2. रनटाइम त्रुटियां

Compile time errors can be classified into two further types:

  • सिंटेक्स त्रुटियां
  • अर्थगत त्रुटियाँ

वाक्यविन्यास त्रुटियाँ उदाहरण:

घोषित करने के बजाय int a; आपने गलती से इसे घोषित कर दिया in a;, for which the compiler will throw an error.

Semantic Errors Example: You have declared a variable int a; और कोड की कुछ पंक्तियों के बाद आप फिर से एक पूर्णांक घोषित करते हैं int a;जब आप कोड संकलित करते हैं तो ये सभी त्रुटियाँ हाइलाइट हो जाती हैं।

रनटाइम त्रुटियाँ उदाहरण

A Runtime error is referred to as an अपवाद. It is any event that interrupts the normal flow of program execution. Examples of exceptions include arithmetic exception, NullPointerException, divide by zero exception, and many more. Exceptions in Java are conditions that are often outside a developer’s direct control.

क्लिक करें यहाँ उत्पन्न करें यदि वीडियो उपलब्ध न हो

Why do we need Exception Handling?

Suppose you have coded a program to access a server. Things work fine while you are developing the code in a local environment with controlled conditions.

Java उपवाद सम्भालना

During an actual production run, the server may be down. When your program tries to access it, an exception is raised, and without proper handling the program will terminate abruptly.

Java उपवाद सम्भालना

How to Handle an Exception in Java

So far we have seen that an exception is often beyond a developer’s control. However, blaming code failure on environmental issues is not a real solution. You need robust programming that takes care of exceptional situations. Such code is known as an Exception Handler.

In our example, good exception handling would mean that when the primary server is down, the program automatically connects to a backup server.

Java उपवाद सम्भालना

To implement this, you could write code to connect to the server using traditional if and else conditions. You will check if the server is down, and if yes, you will write code to connect to the backup server. Such organization of code using “if” and “else” branches is not effective when your code has multiple Java अपवाद से निपटने।

class connect{
	if(Server Up){
	 // code to connect to server
	}
	else{
	 // code to connect to BACKUP server
	}
}

Try Catch Block in Java

Java provides an inbuilt exception handling mechanism that separates normal logic from error recovery logic.

  1. सामान्य कोड एक में चला जाता है TRY ब्लॉक।
  2. अपवाद हैंडलिंग कोड में चला जाता है पकड़ो ब्लॉक।

कैच ब्लॉक का प्रयास करें

In our example, the TRY block will contain the code to connect to the server. The CATCH block will contain the code to connect to the backup server. In case the server is up, the code in the CATCH block will be ignored. In case the server is down, an exception is raised, and the code in the catch block will be executed.

कैच ब्लॉक का प्रयास करें

So, this is how an exception is handled in Java.

Syntax for using try and catch

try{
    statement(s)
}
catch (exceptiontype name){
	statement(s)
}

Example of Try Catch Block

चरण 1) निम्नलिखित कोड को संपादक में कॉपी करें।

class JavaException {
   public static void main(String args[]){
      int d = 0;
      int n = 20;
      int fraction = n/d;
     System.out.println("End Of Main");
   }
}

चरण 2) Save the file and compile the code. Run the program using the command, java Javaअपवाद।

चरण 3) An Arithmetic Exception, divide by zero, is shown for line 5, and line 6 is never executed.

चरण 4) Now let us examine how try and catch will help us to handle this exception. We will put the exception causing line of code into a कोशिश ब्लॉक, उसके बाद ए पकड़ ब्लॉक करें। निम्नलिखित कोड को एडिटर में कॉपी करें।

class JavaException {
 public static void main(String args[]) {
  int d = 0;
  int n = 20;
  try {
   int fraction = n / d;
   System.out.println("This line will not be Executed");
  } catch (ArithmeticException e) {
   System.out.println("In the catch Block due to Exception = " + e);
  }
  System.out.println("End Of Main");
 }
}

चरण 5) Save, compile, and run the code. You will get the following output.

कैच ब्लॉक का प्रयास करें

As you observe, the exception is handled, and the last line of code is also executed. Also, note that line 7 will not be executed because जैसे ही कोई अपवाद उठाया जाता है, नियंत्रण का प्रवाह कैच ब्लॉक पर चला जाता है।

नोट: The ArithmeticException object “e” carries information about the exception that has occurred, which can be useful when taking recovery actions.

Java Exception Class Hierarchy

After one catch statement executes, the others are bypassed, and execution continues after the try and catch block. Nested catch blocks must follow the exception hierarchy from the most specific subclass to the most general parent class.

Java अपवाद पदानुक्रम

  • सभी अपवाद वर्ग Java extend the class Throwable. Throwable has two subclasses, Error and Exception.
  • The Error class defines the exceptions or problems that are not expected to occur under normal circumstances in your program, for example, memory error, hardware error, or JVM error.
  • The Exception class represents the exceptions that can be handled by your program, and your program can recover from these exceptions using try and catch blocks.
  • A RuntimeException is a subclass of the Exception class. Exceptions of this type represent unchecked exceptions that occur at runtime and cannot be detected at compile time. Good examples include divide by zero exception and null pointer exception.
  • IOException is generated during input and output operations.
  • InterruptedException in Java is generated during multithreaded operations when a thread is interrupted.

Example: Nesting of try and catch blocks

चरण 1) निम्नलिखित कोड को संपादक में कॉपी करें।

class JavaException {
 public static void main(String args[]) {
  try {
   int d = 1;
   int n = 20;
   int fraction = n / d;
   int g[] = {
    1
   };
   g[20] = 100;
  }
  /*catch(Exception e){
  	System.out.println("In the catch block due to Exception = "+e);
  }*/
  catch (ArithmeticException e) {
   System.out.println("In the catch block due to Exception = " + e);
  } catch (ArrayIndexOutOfBoundsException e) {
   System.out.println("In the catch block due to Exception = " + e);
  }
  System.out.println("End Of Main");
 }
}

चरण 2) Save the file and compile the code. Run the program using the command, जावा Javaअपवाद.

चरण 3) An ArrayIndexOutOfBoundsException is generated. Change the value of int d to 0. Save, compile, and run the code.

चरण 4) An ArithmeticException must be generated.

चरण 5) Uncomment line 10 to line 12. Save, compile, and run the code.

Step 6) Compilation Error? This is because Exception is the base class of ArithmeticException. Any exception that is raised by ArithmeticException can also be handled by the Exception class. So the catch block of ArithmeticException will never get a chance to execute, which makes it redundant. Hence the compilation error.

Java अंत में ब्लॉक

अंततः ब्लॉक है अपवाद उठाए जाने के बावजूद निष्पादित किया गया try ब्लॉक में। यह है वैकल्पिक to use with a try block. The finally block is the right place to release resources such as database connections, files, or network sockets.

 try {
  statement(s)
 } catch (ExceptiontType name) {

  statement(s)

 } finally {

  statement(s)

 }

If an exception is raised in the try block, the finally block is executed after the catch block completes.

Example of finally Block

चरण 1) निम्नलिखित कोड को संपादक में कॉपी करें।

class JavaException {
   public static void main(String args[]){
    try{
       int d = 0;
       int n =20;
       int fraction = n/d;
    }
  catch(ArithmeticException e){
    System.out.println("In the catch block due to Exception = "+e);
  }
  finally{
	System.out.println("Inside the finally block");
  }
}
}

चरण 2) कोड को सेव करें, कंपाइल करें और रन करें।

चरण 3) Expected output: The finally block is executed even though an exception is raised.

चरण 4) Change the value of variable d = 1. Save, compile, and run the code, and observe the output.

के लिए सर्वोत्तम अभ्यास Java उपवाद सम्भालना

Following a few proven rules will help you keep your Java code resilient, readable, and easy to debug:

  • Catch the most specific exception first, then the more general ones, to preserve the integrity of the exception hierarchy.
  • Avoid empty catch blocks. At a minimum, log the exception so the root cause is never lost.
  • Use the finally block or try with resources to release files, sockets, and database connections.
  • Throw checked exceptions only when the caller can reasonably recover, and use unchecked exceptions for programming errors.
  • Wrap low level exceptions in a meaningful business exception to keep API contracts clean.
  • Never swallow InterruptedException silently in multithreaded code, restore the interrupt flag instead.

अक्सर पूछे जाने वाले प्रश्न

Checked exceptions are verified at compile time and must be declared or caught, such as IOException. Unchecked exceptions extend RuntimeException, occur at runtime, and do not require mandatory handling, such as NullPointerException or ArithmeticException.

The finally block always runs after the try and catch blocks, whether an exception occurred or not. It is the safest place to release resources such as file handles, database connections, or sockets, ensuring clean termination of operations.

The throw keyword is used inside a method to actually raise an exception object, while throws is used in a method signature to declare that the method may pass certain checked exceptions to its caller for handling.

Yes. A try block can be followed by a finally block without any catch block. This pattern is used when the developer wants to ensure cleanup code executes even though the exception itself is propagated to the caller.

Yes. AI powered observability tools analyze stack traces, logs, and code paths to predict where runtime exceptions are likely to occur. They suggest defensive checks, recommend catch placement, and surface anomalies, helping teams prevent crashes before they reach production.

AI assistants parse stack traces, correlate them with source code, and suggest probable root causes plus fixes. They generate try catch templates, recommend logging improvements, and even rewrite faulty methods, dramatically reducing the time developers spend diagnosing Java अपवाद नहीं।

इस पोस्ट को संक्षेप में इस प्रकार लिखें: