/******************************************************************************* * Copyright (c) 2012 SAP AG. * 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: * Stefan Lay (SAP AG) - initial implementation *******************************************************************************/ package org.eclipse.egit.ui.internal.provisional.wizards; /** * <p> * <strong>EXPERIMENTAL</strong>. This class or interface has been added as part * of a work in progress. There is no guarantee that this API will work or that * it will remain the same. Please do not use this API without consulting with * the egit team. * </p> * * Exception that indicates that an implementor of the extension point could not * create a {@code GitRepositoryInfo} object */ public class NoRepositoryInfoException extends Exception { private static final long serialVersionUID = 1L; /** * @param message * @param cause */ public NoRepositoryInfoException(String message, Throwable cause) { super(message, cause); } /** * @param message */ public NoRepositoryInfoException(String message) { super(message); } }