blob: a8c8a566e50a390a13dfe79812ad044d703eeb24 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2008 Oracle Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Oracle - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.core.internal.project.facet;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.jst.jsf.core.internal.JSFCorePlugin;
/**
* Exception for use during JSF Facet installation/un-installation
*
*/
public class JSFFacetException extends CoreException {
private static final long serialVersionUID = 1L;
/**
* Constructor
* @param msg
*/
public JSFFacetException(String msg) {
super(new Status(IStatus.ERROR, JSFCorePlugin.PLUGIN_ID, msg));
}
}