Skip to content

Instantly share code, notes, and snippets.

@fridolin-koch
Created February 6, 2013 19:35
Show Gist options
  • Save fridolin-koch/4725120 to your computer and use it in GitHub Desktop.
Save fridolin-koch/4725120 to your computer and use it in GitHub Desktop.
public void error(final String errorMsg) {
SwingUtilities.invokeLater(new Runnable()
{
public void run() {
JOptionPane.showMessageDialog(
DownloadFrameThreaded.this, errorMsg, "Error", JOptionPane.ERROR_MESSAGE
);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment