Java JFrame Parent createExceptionDialog(Frame parent, String title, Throwable error)

Here you can find the source of createExceptionDialog(Frame parent, String title, Throwable error)

Description

create Exception Dialog

License

Open Source License

Declaration

private static JDialog createExceptionDialog(Frame parent, String title, Throwable error) 

Method Source Code

//package com.java2s;
/*/*from w w  w .j  a  v  a2 s . c o  m*/
 * ClientUtils.java
 *
 * Network Embedded Sensor Testbed (NESTbed)
 *
 * Copyright (C) 2006-2007
 * Dependable Systems Research Group
 * School of Computing
 * Clemson University
 * Andrew R. Dalton and Jason O. Hallstrom
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the
 *
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301, USA.
 */

import java.awt.Dimension;
import java.awt.Frame;
import java.io.ByteArrayOutputStream;
import java.io.PrintWriter;
import javax.swing.JDialog;
import javax.swing.JOptionPane;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;

public class Main {
    private static JDialog createExceptionDialog(Frame parent, String title, Throwable error) {
        ByteArrayOutputStream messageStream = new ByteArrayOutputStream();
        PrintWriter out = new PrintWriter(messageStream);
        error.printStackTrace(out);
        out.close();

        JTextField errorMsg = new JTextField(error.toString());
        JTextArea errorText = new JTextArea(messageStream.toString());
        JScrollPane textPane = new JScrollPane(errorText);

        errorText.setEditable(false);
        errorMsg.setEditable(false);

        textPane.setPreferredSize(new Dimension(500, 400));

        JOptionPane warning = new JOptionPane(textPane, JOptionPane.ERROR_MESSAGE);

        JDialog dialog = warning.createDialog(parent, title);
        dialog.getContentPane().add(warning);
        dialog.setResizable(true);

        return dialog;
    }
}

Related

  1. AllPlatformSaveAs(Frame parentFrame, String dialogTitle, String directory, final String fileExtension, String fractionFileName, FileFilter nonMacFileFilter)
  2. AllPlatformSaveAs(Frame parentFrame, String dialogTitle, String directory, final String fileExtension, String fractionFileName, FileFilter nonMacFileFilter)
  3. buildParentFrame(Object inp)
  4. centreOverFrame(JInternalFrame win, JInternalFrame parent)
  5. closeFrameWhenEscapePressed(final JRootPane panel, final ActionListener actListener)
  6. createProgressDialog(Frame parentFrame, String title, JProgressBar progressBar)
  7. enableAllComponents(final boolean enable, final Frame parent)
  8. enableAllComponentsExcept(final boolean enable, final Frame parent, final Component... components)
  9. ensureVisibilityAtParent(final JInternalFrame frame)