Package org.eclipse.jgit.api.errors
Class InvalidRemoteException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.InvalidRemoteException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidRemoteException extends GitAPIException
Exception thrown when a fetch command was called with an invalid remote- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidRemoteException(java.lang.String msg)
InvalidRemoteException(java.lang.String msg, java.lang.Throwable cause)
-
-
-
Constructor Detail
-
InvalidRemoteException
public InvalidRemoteException(java.lang.String msg)
- Parameters:
msg
- message describing the invalid remote.
-
InvalidRemoteException
public InvalidRemoteException(java.lang.String msg, java.lang.Throwable cause)
- Parameters:
msg
- message describing the invalid remote.cause
- why the remote is invalid.
-
-