You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SymlinksNotSupportedException.java 865B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) 2007, Robin Rosenberg <robin.rosenberg@dewire.com>
  3. * Copyright (C) 2006-2007, Shawn O. Pearce <spearce@spearce.org> and others
  4. *
  5. * This program and the accompanying materials are made available under the
  6. * terms of the Eclipse Distribution License v. 1.0 which is available at
  7. * https://www.eclipse.org/org/documents/edl-v10.php.
  8. *
  9. * SPDX-License-Identifier: BSD-3-Clause
  10. */
  11. package org.eclipse.jgit.errors;
  12. import java.io.IOException;
  13. /**
  14. * An exception thrown when a symlink entry is found and cannot be
  15. * handled.
  16. */
  17. public class SymlinksNotSupportedException extends IOException {
  18. private static final long serialVersionUID = 1L;
  19. /**
  20. * Construct a SymlinksNotSupportedException for the specified link
  21. *
  22. * @param s name of link in tree or workdir
  23. */
  24. public SymlinksNotSupportedException(String s) {
  25. super(s);
  26. }
  27. }