/******************************************************************************* * Copyright (c) 2005-2008 Polarion Software. * 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: * Alexander Gurov - Initial API and implementation *******************************************************************************/ package org.eclipse.team.svn.core.connector; /** * SVN connector unresolved conflict exception * * The JavaHL API's is the only way to interact between SVN and Java-based tools. At the same time JavaHL connector library * is not EPL compatible and we won't to pin plug-in with concrete connector implementation. So, the only way to do this is * providing our own connector interface which will be covered by concrete connector implementation. * * @author Alexander Gurov */ public class SVNConnectorUnresolvedConflictException extends SVNConnectorException { private static final long serialVersionUID = 7591147418116040719L; public SVNConnectorUnresolvedConflictException(String message) { super(message, SVNErrorCodes.fsConflict, null); } public SVNConnectorUnresolvedConflictException(Throwable cause) { super(cause == null ? null : cause.getMessage(), SVNErrorCodes.fsConflict, cause); } public SVNConnectorUnresolvedConflictException(String message, Throwable cause) { super(message, SVNErrorCodes.fsConflict, cause); } }