public void showLoadError(MessagingException me) {
final MessagingException fme = me;
Runnable runMe = new Runnable() {
public void run() {
setLabel(Pooka.getProperty("AttachmentPopupMenu.errorloading.title", "Error loading attachments"));
fme.printStackTrace();
}
};
if (SwingUtilities.isEventDispatchThread())
runMe.run();