Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to capture divide by zero exception in Java?
When you divide a number by zero an Arithmetic Exception number is thrown.
Example
public class DividedByZero {
public static void main(String args[]) {
int a, b;
try {
a = 0;
b = 54/a;
System.out.println("hello");
} catch (ArithmeticException e) {
System.out.println("you cannot divide a number with zero");
}
}
}
Output
you cannot divide a number with zero
Advertisements
