コード例 #1
0
  /** Custom error message */
  public void showErrorMsg(String title, String msg) {

    JOptionPane.showMessageDialog(this, msg, title, JOptionPane.ERROR_MESSAGE);
  }
コード例 #2
0
  /** Observer method to show an error message */
  public void showErrorMsg(Throwable t) {

    JOptionPane.showMessageDialog(this, t, "Error", JOptionPane.ERROR_MESSAGE);
  }