* MessageRunner so as not to be on the dispatch (GUI) thread
*
* @see MessageRunner
*/
public void showMessage(String title, String details) {
MessageRunner mesThread = new MessageRunner(title, details, this);
try {
SwingUtilities.invokeLater(mesThread);
}
catch (Exception e) {
logger.error("showMessage() failed", e);