blob: 797644345ad626ccfa8547f05d85d3c7d74901b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 SAP AG, Walldorf.
* 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:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.platform.discovery.runtime.api;
public class SearchCancelledException extends SearchFailedException {
public SearchCancelledException() {
super();
}
public SearchCancelledException(Throwable cause) {
super(cause);
}
private static final long serialVersionUID = 1L;
}