KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > bsf > smartValueObject > tools > InstrumentorException


1 package org.bsf.smartValueObject.tools;
2
3 /**
4  * Exception for wrapping low-level errors caused by the bytecode
5  * manipulating libraries.
6  */

7 public class InstrumentorException extends Exception JavaDoc {
8     public InstrumentorException() {
9         super();
10     }
11
12     public InstrumentorException(String JavaDoc msg) {
13         super(msg);
14     }
15
16     public InstrumentorException(String JavaDoc msg, Throwable JavaDoc t) {
17         super(msg, t);
18     }
19
20     public InstrumentorException(Throwable JavaDoc t) {
21         super(t);
22     }
23 }
24
Popular Tags