org.openrewrite.jgit.errors.SymlinksNotSupportedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgit Show documentation
Show all versions of jgit Show documentation
Fork of jgit to maintain Java 8 compatibility
The newest version!
/*
* Copyright (C) 2007, Robin Rosenberg
* Copyright (C) 2006-2007, Shawn O. Pearce and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0 which is available at
* https://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.openrewrite.jgit.errors;
import java.io.IOException;
/**
* An exception thrown when a symlink entry is found and cannot be
* handled.
*/
public class SymlinksNotSupportedException extends IOException {
private static final long serialVersionUID = 1L;
/**
* Construct a SymlinksNotSupportedException for the specified link
*
* @param s name of link in tree or workdir
*/
public SymlinksNotSupportedException(String s) {
super(s);
}
}