Examples of ToolRepositoryException


Examples of tool.repository.ToolRepositoryException

  /**
   * @param args
   */
  public static void main(String[] args) {
    ToolRepositoryException reposEx = new ToolRepositoryException("BoB", "really long error message,\n" +
        "the quick brown fox jumps over the lazy dogs back\n" +
        "message with\n" +
        "multiple lines\n");
    IStatus status = new Status(IStatus.ERROR, ToolPlugin.PLUGIN_ID, "Status message", reposEx);
    ErrorDialog ed = new ErrorDialog(Display.getDefault().getActiveShell(), "Title for Error Dialog", "terse error message", status, 0);
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.