blob: 5ff856dc1a008de9737011d7d2a3ddf94d68b652 [file] [log] [blame]
public class A {
public void launch() {
try {
if ((javaProject == null) || !javaProject.exists()) {
abort(
PDEPlugin
.getResourceString("JUnitLaunchConfiguration.error.invalidproject"),
null,
IJavaLaunchConfigurationConstants.ERR_NOT_A_JAVA_PROJECT);
}
} catch (CoreException e) {
}
}
}