1 11 package org.eclipse.update.core.model; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.core.runtime.IStatus; 15 import org.eclipse.core.runtime.Status; 16 17 27 public class InstallAbortedException extends CoreException { 28 29 private static final long serialVersionUID = 1L; 30 31 36 public InstallAbortedException(String msg,Exception e) { 37 super(new Status(IStatus.INFO,"org.eclipse.update.core",IStatus.OK,msg,e)); } 39 } 40 | Popular Tags |