blob: 639fe916e4b31b5f157c31840a46e4a8ea966101 [file] [log] [blame]
/*******************************************************************************
* CHESS core plugin
*
* Copyright (C) 2011-2015
* Mälardalen University, Sweden
*
*
* 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-v20.html
*******************************************************************************/
package org.polarsys.chess.fla.common;
public class TransformationException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1695277209180788662L;
public TransformationException() {
}
public TransformationException(Exception e) {
super(e);
}
}