get rid of the stream parsing that occurs in the Layer III decoder. BitStream.readFra...
[IRC.git] / Robust / src / Tests / TryCatchTest.java
1 public class TryCatchTest {
2   
3   public static void main(String[] args) {
4     try{
5       System.out.println("try block");
6     }catch(Exception e) {
7       System.out.println("catch block");
8     }finally{
9       System.out.println("finally block");
10     }
11   }
12 }