blob: ed809d99a4584a39a8d811f53b01c286b6a3fbc7 [file] [log] [blame]
package org.eclipse.jst.validation.test;
public class BVTValidationException extends Exception {
private Throwable _target = null;
public BVTValidationException(Throwable t) {
setTargetException(t);
}
public BVTValidationException(String s) {
super(s);
}
public BVTValidationException(String s, Throwable target) {
super(s);
setTargetException(target);
}
public Throwable getTargetException() {
return _target;
}
public void setTargetException(Throwable target) {
_target = target;
}
}