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