blob: 708e250b90d63fd11ebc6f5dc26fab1cc8752e85 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013 CEA LIST.
* 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:
* Cedric Dumoulin - cedric.dumoulin@lifl.fr
******************************************************************************/
package org.eclipse.papyrus.layers.stackmodel;
/**
* @author dumoulin
*
*/
public class InstanciationException extends LayersException {
/**
*
*/
private static final long serialVersionUID = 2070317356365033045L;
/**
* Constructor.
*
*/
public InstanciationException() {
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param message
*/
public InstanciationException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param cause
*/
public InstanciationException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param message
* @param cause
*/
public InstanciationException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}