Package org.eclipse.jgit.errors
Class RepositoryNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.TransportException
-
- org.eclipse.jgit.errors.RepositoryNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class RepositoryNotFoundException extends TransportException
Indicates a local repository does not exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RepositoryNotFoundException(java.io.File location)
Constructs an exception indicating a local repository does not exist.RepositoryNotFoundException(java.io.File location, java.lang.Throwable why)
Constructs an exception indicating a local repository does not exist.RepositoryNotFoundException(java.lang.String location)
Constructs an exception indicating a local repository does not exist.RepositoryNotFoundException(java.lang.String location, java.lang.Throwable why)
Constructs an exception indicating a local repository does not exist.
-
-
-
Constructor Detail
-
RepositoryNotFoundException
public RepositoryNotFoundException(java.io.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(java.io.File location, java.lang.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(java.lang.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(java.lang.String location, java.lang.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.
-
-