KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > alt > jiapi > InstrumentationException


1 package alt.jiapi;
2
3 /**
4  * Class IllegalInstrumentationException.
5  *
6  * @author Mika Riekkinen
7  */

8 public class InstrumentationException extends RuntimeException JavaDoc {
9     public InstrumentationException(String JavaDoc message) {
10         super(message);
11     }
12 }
13
Popular Tags