blob: 94f00f75f7f0d77f2ab1b45b58cc5a9ae6efa4a7 [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 cedric dumoulin
*
*/
public class BadStateException extends LayersException {
/**
*
*/
private static final long serialVersionUID = -5674451388263111557L;
/**
* Constructor.
*
*/
public BadStateException() {
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param message
*/
public BadStateException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param cause
*/
public BadStateException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
/**
* Constructor.
*
* @param message
* @param cause
*/
public BadStateException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}