Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 43e8063e5a6cf7011ce68a71c9205a06ef534fda (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                
                                                                




















































                                                                          
/*******************************************************************************
 * 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 NotFoundException extends LayersException {

	/**
	 *
	 */
	private static final long serialVersionUID = 2070317356365033045L;

	/**
	 * Constructor.
	 *
	 */
	public NotFoundException() {
		// TODO Auto-generated constructor stub
	}

	/**
	 * Constructor.
	 *
	 * @param message
	 */
	public NotFoundException(String message) {
		super(message);
		// TODO Auto-generated constructor stub
	}

	/**
	 * Constructor.
	 *
	 * @param cause
	 */
	public NotFoundException(Throwable cause) {
		super(cause);
		// TODO Auto-generated constructor stub
	}

	/**
	 * Constructor.
	 *
	 * @param message
	 * @param cause
	 */
	public NotFoundException(String message, Throwable cause) {
		super(message, cause);
		// TODO Auto-generated constructor stub
	}

}

Back to the top