Java

Exceptions in Java

Exceptions in Java

When the flow of instructions is disrupted during the execution of the code, exceptions occur and they should be dealt with to avoid any serious circumstances. 
Java provides a rich set of classes for working with exceptions in java.lang package. These classes include 
● Exception: This is the base class for all exceptions in Java. 
● RuntimeException: This is the base class for all exceptions that occur during the execution of a program. 
● IOException: This is the base class for all exceptions related to I/O operations.

The following code reads a file and catches an IOException if the file is not found:

try { 
FileReader reader = new FileReader("example.txt"); 
// code that reads the file 
reader.close(); 
} catch (IOException e) { 
System.out.println("File not found."); 
} 

You can also throw exceptions explicitly using the "throw" keyword. 
For example, the following code throws an IllegalArgumentException if a negative value is passed to a method: 

public void setValue(int x) { 
if (x < 0) { 
throw new IllegalArgumentException("Value cannot be negative."); 
} 
// code that sets the value 
} 

To handle multiple exceptions, ‘|’ is used: 

try { 
// code that reads a file 
} catch (IOException | FileNotFoundException e) { 
System. out.println("Error reading file."); 
} 

Java also provides a way to define your own exception classes by extending the Exception class. 
Example: 

public class MyException extends Exception { 
public MyException(String message) { 
super(message); 
} 
} 

 

Top course recommendations for you

    OSI Model: Physical Layer
    2 hrs
    Beginner
    1.3K+ Learners
    4.61  (28)
    Introduction to Servlets and JSP
    2 hrs
    Beginner
    1.4K+ Learners
    4.57  (51)
    Networking in Java
    2 hrs
    Beginner
    1.9K+ Learners
    4.57  (70)
    Basics of Computer Networking
    3 hrs
    Beginner
    20.2K+ Learners
    4.49  (871)
    Data Structures & Algorithms in Java
    4 hrs
    Beginner
    155.4K+ Learners
    4.27  (491)
    Java Programming
    2 hrs
    Beginner
    524K+ Learners
    4.45  (11)
    Python Fundamentals for Beginners
    4 hrs
    Beginner
    620.9K+ Learners
    4.55  (11)
    Front End Development - HTML
    2 hrs
    Beginner
    430.8K+ Learners
    4.51  (27879)
    Front End Development - CSS
    2 hrs
    Beginner
    156.3K+ Learners
    4.52  (9427)
    Blockchain Basics
    3 hrs
    Beginner
    73K+ Learners
    4.55  (2822)