blob: 3e4b4a0210a64e75c05e8254169ea7728c46382d [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.internal.infra.gmfdiag.layers.model;
/**
* @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
}
}