Examples of GOIMErrorDialog


Examples of net.sphene.goim.rcp.ui.dialogs.GOIMErrorDialog

  @Override
  public void eventLoopException(Throwable exception) {
    super.eventLoopException(exception);
    Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
    //ErrorDialog.openError(shell,"Error in Event Loop","An error occurred during processing event: " + exception.getLocalizedMessage(),new Status(IStatus.ERROR,GOIMPlugin.ID,IStatus.OK,"Error occurred during event: " + exception.getLocalizedMessage(),exception));
    new GOIMErrorDialog(shell,"Error in Event Loop","An error occurred during processing event: " + exception.getLocalizedMessage(),new Status(IStatus.ERROR,GOIMPlugin.ID,IStatus.OK,"Error occurred during event: " + exception.getLocalizedMessage(),exception),IStatus.ERROR).open();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.