blob: 0c2462b1a26228aae81376aa336c7e9744a44f61 [file] [log] [blame]
package org.eclipse.cdt.internal.ui;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
/**
* An exception to wrap a status. This is necessary to use the core's IRunnableWithProgress
* support
*/
public class CUIException extends CoreException {
public CUIException(IStatus status) {
super(status);
}
}