/********************************************************************** * Copyright (c) 2005-2009 ant4eclipse project team. * * 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: * Nils Hartmann, Daniel Kasmeroglu, Gerd Wuetherich **********************************************************************/ package org.ant4eclipse.ant.platform.internal.team; /** * <p> * Thrown to indicate that an Exception has been occured whilst accessing the a version control repository. * </p> * * @author Gerd Wütherich (gerd@gerd-wuetherich.de) * @deprecated */ @Deprecated public class VcsException extends RuntimeException { /** serialVersionUID */ private static final long serialVersionUID = 3257844381221271088L; /** * Creates a new instance of type VcsException */ public VcsException() { super(); } /** * Creates a new instance of type VcsException * * @param message * the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. */ public VcsException(String message) { super(message); } /** * Creates a new instance of type VcsException * * @param cause * the cause (which is saved for later retrieval by the {@link #getCause()} method). (A <tt>null</tt> value * is permitted, and indicates that the cause is nonexistent or unknown.) */ public VcsException(Throwable cause) { super(cause); } /** * Creates a new instance of type VcsException * * @param message * the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method. * @param cause * the cause (which is saved for later retrieval by the {@link #getCause()} method). (A <tt>null</tt> value * is permitted, and indicates that the cause is nonexistent or unknown.) */ public VcsException(String message, Throwable cause) { super(message, cause); } }