Samples JDK
Test.java
1 package com.freemindcafe.java8.sample1;
2 
3 public class Test {
4 
5  static void m1(){
6  throw new RuntimeException();
7  }
8 
9  public static void main(String[] args) {
10  try{
11  m1();
12  }
13  catch(Exception ex){
14  System.out.println("here");
15  }
16  }
17 
18 }