org.eclipse.jgit.errors
Class RepositoryNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by org.eclipse.jgit.errors.TransportException
                  extended by org.eclipse.jgit.errors.RepositoryNotFoundException
All Implemented Interfaces:
Serializable

public class RepositoryNotFoundException
extends TransportException

Indicates a local repository does not exist.

See Also:
Serialized Form

Constructor Summary
RepositoryNotFoundException(File location)
          Constructs an exception indicating a local repository does not exist.
RepositoryNotFoundException(File location, Throwable why)
          Constructs an exception indicating a local repository does not exist.
RepositoryNotFoundException(String location)
          Constructs an exception indicating a local repository does not exist.
RepositoryNotFoundException(String location, Throwable why)
          Constructs an exception indicating a local repository does not exist.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.


Copyright © 2013. All Rights Reserved.