Advertisement
Dprogrammed1

java ques 53

Mar 28th, 2019
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.19 KB | None | 0 0
  1. class Main {
  2.    public static void main(String args[]) {
  3.       try {
  4.          throw 10;
  5.       }
  6.       catch(int e) {
  7.          System.out.println("Got the  Exception " + e);
  8.       }
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement