01: /*
02: * AbstractClass.java
03: *
04: * Created on March 12, 2005, 7:22 PM
05: */
06:
07: package org.netbeans.test.java.hints;
08:
09: import java.io.IOException;
10:
11: /**
12: *
13: * @author lahvac
14: */
15: public abstract class TryWrapper9 {
16:
17: /** Creates a new instance of AbstractClass */
18: public TryWrapper9() {
19: throw new IOException();
20: }
21:
22: }
|