ContextHelp now in new module net.sourceforge.phpeclipse.phphelp
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / internal / ui / JavaUIException.java
1 /*
2  * (c) Copyright IBM Corp. 2000, 2001.
3  * All Rights Reserved.
4  */
5 package net.sourceforge.phpdt.internal.ui;
6
7
8 import org.eclipse.core.runtime.CoreException;
9 import org.eclipse.core.runtime.IStatus;
10
11 /**
12  * An exception to wrap a status. This is necessary to use the core's IRunnableWithProgress
13  * support
14  */
15
16 public class JavaUIException extends CoreException {
17         
18         public JavaUIException(IStatus status) {
19                 super(status);
20         }       
21 }