Package org.eclipse.jgit.lfs.errors
Class LfsConfigInvalidException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.lfs.errors.LfsConfigInvalidException
-
- All Implemented Interfaces:
java.io.Serializable
public class LfsConfigInvalidException extends java.io.IOException
Thrown when a LFS configuration problem has been detected (i.e. unable to find the remote LFS repository URL).- Since:
- 4.11
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description LfsConfigInvalidException(java.lang.String msg)
Constructor for LfsConfigInvalidException.LfsConfigInvalidException(java.lang.String msg, java.lang.Exception e)
Constructor for LfsConfigInvalidException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LfsConfigInvalidException
public LfsConfigInvalidException(java.lang.String msg)
Constructor for LfsConfigInvalidException.- Parameters:
msg
- the error description
-
LfsConfigInvalidException
public LfsConfigInvalidException(java.lang.String msg, java.lang.Exception e)
Constructor for LfsConfigInvalidException.- Parameters:
msg
- the error descriptione
- cause of this exception- Since:
- 5.0
-
-