All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.oliviercailloux.gitjfs.PathCouldNotBeFoundException Maven / Gradle / Ivy

package io.github.oliviercailloux.gitjfs;

import java.io.IOException;

/**
 * We could not determine which file this path locates, or even whether it exists, because we may
 * not follow links but the path does contain links.
 */
@SuppressWarnings("serial")
public class PathCouldNotBeFoundException extends IOException {

  public PathCouldNotBeFoundException() {
    super();
  }

  public PathCouldNotBeFoundException(String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy