blob: 376ee9c2706005256af3b6a1bc9fe86d9d30b427 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 Sybase, Inc. and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.pageflow.model;
/**
* The xxxx
*
* @author Jane Cantz
* @version 1.0
*/
public class FacesConfigException extends Exception {
/**
* Comment for <code>serialVersionUID</code>
*/
private static final long serialVersionUID = 8536175342654557L;
public FacesConfigException() {
super();
}
public FacesConfigException(String message) {
super(message);
}
}