C# Class GitSharp.Core.Exceptions.RepositoryNotFoundException

Inheritance: TransportException
Show file Open project: stschake/GitSharp

Public Methods

Method Description
RepositoryNotFoundException ( DirectoryInfo location ) : System

Constructs an exception indicating a local repository does not exist

RepositoryNotFoundException ( DirectoryInfo location, Exception inner ) : System

Constructs an exception indicating a local repository does not exist

RepositoryNotFoundException ( string location ) : System

Constructs an exception indicating a local repository does not exist

RepositoryNotFoundException ( string location, Exception inner ) : System

Constructs an exception indicating a local repository does not exist

Protected Methods

Method Description
RepositoryNotFoundException ( SerializationInfo info, StreamingContext context ) : System

Method Details

RepositoryNotFoundException() public method

Constructs an exception indicating a local repository does not exist
public RepositoryNotFoundException ( DirectoryInfo location ) : System
location System.IO.DirectoryInfo /// Description of the repository not found, usually file path ///
return System

RepositoryNotFoundException() public method

Constructs an exception indicating a local repository does not exist
public RepositoryNotFoundException ( DirectoryInfo location, Exception inner ) : System
location System.IO.DirectoryInfo Description of the repository not found, usually file path
inner System.Exception Inner Exception.
return System

RepositoryNotFoundException() protected method

protected RepositoryNotFoundException ( SerializationInfo info, StreamingContext context ) : System
info System.Runtime.Serialization.SerializationInfo
context System.Runtime.Serialization.StreamingContext
return System

RepositoryNotFoundException() public method

Constructs an exception indicating a local repository does not exist
public RepositoryNotFoundException ( string location ) : System
location string /// Description of the repository not found, usually file path ///
return System

RepositoryNotFoundException() public method

Constructs an exception indicating a local repository does not exist
public RepositoryNotFoundException ( string location, Exception inner ) : System
location string Description of the repository not found, usually file path
inner System.Exception Inner Exception.
return System