blob: 7958d0f3927558a9cf8d864712286d8f6bd81d5b [file] [log] [blame]
/***********************************************************************
* Copyright (c) 2008 by SAP AG, Walldorf.
* 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:
* SAP AG - initial API and implementation
***********************************************************************/
package org.eclipse.jst.jee.model.internal.mergers;
/**
* ModelException is thrown when invalid values or inconsistencies are detected in the model.
*
* @author Dimitar Giormov
*/
public class ModelException extends Exception {
/**
*
*/
private static final long serialVersionUID = -1239223181526060738L;
public ModelException(Exception e) {
super(e);
}
public ModelException() {
super();
}
}