logger.println("NetBeans: No class to reload");
return;
}
String error = null;
try {
debugger.fixClasses(map);
} catch (UnsupportedOperationException uoex) {
error = "The virtual machine does not support this operation: " + uoex.getLocalizedMessage();
} catch (NoClassDefFoundError ncdfex) {
error = "The bytes don't correspond to the class type (the names don't match): " + ncdfex.getLocalizedMessage();
} catch (VerifyError ver) {