blob: d29041bc29eed3c31555865f0006708098508394 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005-2014 Obeo
*
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.sirius.query.legacy.gen.template.eval;
import org.eclipse.sirius.query.legacy.tools.log.AcceleoException;
/**
* ENode Cast Exception.
*
*
*/
public class ENodeCastException extends AcceleoException {
private static final long serialVersionUID = 1;
/**
* Constructor.
*
* @param message
* is the message
*/
public ENodeCastException(String message) {
super(message);
}
/* (non-Javadoc) */
@Override
public String getMessage() {
return super.getMessage();
}
}