blob: 386bf4fd40581dd41e010de0642ff6ff0384b23e [file] [log] [blame]
package org.eclipse.jdt.ui.leaktest;
public class ProfileException extends Exception {
public ProfileException(String msg, Throwable e) {
super(msg, e);
}
public ProfileException(Throwable e) {
super(e);
}
public ProfileException(String msg) {
super(msg);
}
}