/***************************************************************************** * Copyright (c) 2009 CEA LIST & LIFL * * * 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 - Initial API and implementation * *****************************************************************************/ package org.eclipse.papyrus.infra.core.sasheditor.internal; /** * Exception thrown when a search or lookup fails. * * @author dumoulin */ public class NotFoundException extends SashWindowsException { /** * */ private static final long serialVersionUID = 1L; /** * */ public NotFoundException() { // TODO Auto-generated constructor stub } /** * @param message */ public NotFoundException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param cause */ public NotFoundException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public NotFoundException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } }