PiRSquared17 / tomproject

Automatically exported from code.google.com/p/tomproject
0 stars 0 forks source link

Assess the possibility of use swingX Error Dialog with details pane in multilanguage #60

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
    public static void main(String args[]) {
    try {
        Exception cause = new Exception("I'm the cause");
        Exception ex = new Exception("I'm a secondary exception", 
cause);
        throw ex;
    } catch (Exception ex) {
        ErrorInfo info = new ErrorInfo("Title", "basic error message", 
null, "category", ex, Level.ALL,
            null);
        JXErrorPane.showDialog(null, info);
    }
    }

Original issue reported on code.google.com by brito....@gmail.com on 11 Mar 2010 at 2:46

GoogleCodeExporter commented 9 years ago
Maybe not useful for end user, better create log file.

Original comment by brito....@gmail.com on 11 Mar 2010 at 2:46