Package org.jdesktop.swingx.error

Examples of org.jdesktop.swingx.error.ErrorInfo


     *
     * @param errorMessage error string for MessageBox
     * @param ex exception of error
     */
    public static void showError(String errorMessage, Exception ex) {
        ErrorInfo errorInfo = new ErrorInfo(
                I18n.COMPONENT.getString("MessageBox.Title.Error"),
                "<html><body>" + errorMessage + "</body></html>",
                null, null, ex, Level.SEVERE, null);
        JXErrorPane.showDialog(new JFrame(), errorInfo);
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.swingx.error.ErrorInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.