});
exceptionTextArea = new Text(this, SWT.BORDER|SWT.MULTI|SWT.V_SCROLL|SWT.H_SCROLL|SWT.WRAP);
exceptionTextArea.setBounds(0, 40, 484, 400);
exceptionTextArea.setEditable(false);
exceptionTextArea.setBackground(Display.getCurrent().getSystemColor(SWT.COLOR_WHITE));
exceptionListener = new ExceptionAdapter() {
public void onBackCatched(final ExceptionEvent event) {
final String msg = ExceptionUtils.getDetailMessage(event.getException());
Display.getDefault().asyncExec(new Runnable(){
public void run() {
ExceptionPane.this.appendText(msg);