blob: 34c46941bf0046d1e1926aca269070dd36dff85c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
*
* 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:
* Edgar Mueller - initial API and implementation
******************************************************************************/
package org.eclipse.emf.ecp.ecore.editor.util;
/**
* Custom exception to indicate an error during the generation of a genmodel.
*
* @author emueller
*
*/
@SuppressWarnings("serial")
public class EcoreGenException extends Exception {
/**
* Constructor.
*
* @param msg
* exception message
*/
public EcoreGenException(String msg) {
super(msg);
}
/**
* Constructor with additional cause.
*
* @param msg
* exception message
* @param cause
* the cause of the exception
*/
public EcoreGenException(String msg, Throwable cause) {
super(msg, cause);
}
}