1 11 package org.eclipse.ui; 12 13 import org.eclipse.core.runtime.IStatus; 14 15 22 public class PartInitException extends WorkbenchException { 23 24 28 private static final long serialVersionUID = 3257284721296684850L; 29 30 35 public PartInitException(String message) { 36 super(message); 37 } 38 39 45 public PartInitException(String message, Throwable nestedException) { 46 super(message, nestedException); 47 } 48 49 55 public PartInitException(IStatus status) { 56 super(status); 57 } 58 } 59 | Popular Tags |