Package org.eclipse.jgit.api.errors
Class TooLargePackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.api.errors.GitAPIException
-
- org.eclipse.jgit.api.errors.TransportException
-
- org.eclipse.jgit.api.errors.TooLargePackException
-
- All Implemented Interfaces:
java.io.Serializable
public class TooLargePackException extends TransportException
Exception thrown when the server rejected a too large pack- Since:
- 4.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description TooLargePackException(java.lang.String msg)
Constructor for TooLargePackExceptionTooLargePackException(java.lang.String msg, java.lang.Throwable cause)
Constructor for TooLargePackException
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TooLargePackException
public TooLargePackException(java.lang.String msg)
Constructor for TooLargePackException- Parameters:
msg
- message describing the transport failure.
-
TooLargePackException
public TooLargePackException(java.lang.String msg, java.lang.Throwable cause)
Constructor for TooLargePackException- Parameters:
msg
- message describing the transport exception.cause
- why the transport failed.
-
-