ErrorDialog.openError(this.getShell(), "Error getting info on interpreter",
javaNotConfiguredException.getMessage(), PydevPlugin.makeStatus(IStatus.ERROR,
"Java vm not configured.\n", javaNotConfiguredException));
} else if (operation.e instanceof JDTNotAvailableException) {
JDTNotAvailableException noJdtException = (JDTNotAvailableException) operation.e;
ErrorDialog.openError(this.getShell(), "Error getting info on interpreter",
noJdtException.getMessage(),
PydevPlugin.makeStatus(IStatus.ERROR, "JDT not available.\n", noJdtException));
} else {
if (autoConfig) {
reportAutoConfigProblem(operation.e);