105106107108109110111112113114115116117
l = new Label("Update Failed:"); l.setFont(SMALLBOLD); l.setForeground(Color.red); add(l, gbc); gbc.gridy++; ExceptionPanel c = new ExceptionPanel(zl.getUpdateFailureString(), TINYITALIC); c.setSeen(true); gbc.fill = gbc.BOTH; add(c, gbc); return; }