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
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description InvalidRemoteException(java.lang.String msg)
Constructor for InvalidRemoteExceptionInvalidRemoteException(java.lang.String msg, java.lang.Throwable cause)
Constructor for InvalidRemoteException
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
InvalidRemoteException
public InvalidRemoteException(java.lang.String msg)
Constructor for InvalidRemoteException- Parameters:
msg
- message describing the invalid remote.
-
InvalidRemoteException
public InvalidRemoteException(java.lang.String msg, java.lang.Throwable cause)
Constructor for InvalidRemoteException- Parameters:
msg
- message describing the invalid remote.cause
- why the remote is invalid.
-
-