1 package org.bsf.smartValueObject.tools; 2 3 7 public class InstrumentorException extends Exception { 8 public InstrumentorException() { 9 super(); 10 } 11 12 public InstrumentorException(String msg) { 13 super(msg); 14 } 15 16 public InstrumentorException(String msg, Throwable t) { 17 super(msg, t); 18 } 19 20 public InstrumentorException(Throwable t) { 21 super(t); 22 } 23 } 24 | Popular Tags |