Class RepositoryNotFoundException

All Implemented Interfaces:
Serializable

public class RepositoryNotFoundException extends TransportException
Indicates a local repository does not exist.
See Also:
  • Field Details

  • Constructor Details

    • RepositoryNotFoundException

      public RepositoryNotFoundException(File location)
      Constructs an exception indicating a local repository does not exist.
      Parameters:
      location - description of the repository not found, usually file path.
    • RepositoryNotFoundException

      public RepositoryNotFoundException(File location, Throwable why)
      Constructs an exception indicating a local repository does not exist.
      Parameters:
      location - description of the repository not found, usually file path.
      why - why the repository does not exist.
    • RepositoryNotFoundException

      public RepositoryNotFoundException(String location)
      Constructs an exception indicating a local repository does not exist.
      Parameters:
      location - description of the repository not found, usually file path.
    • RepositoryNotFoundException

      public RepositoryNotFoundException(String location, Throwable why)
      Constructs an exception indicating a local repository does not exist.
      Parameters:
      location - description of the repository not found, usually file path.
      why - why the repository does not exist.
  • Method Details