Package org.eclipse.jgit.errors
Class TooLargePackException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.errors.TransportException
-
- org.eclipse.jgit.errors.TooLargePackException
-
- All Implemented Interfaces:
java.io.Serializable
public class TooLargePackException extends TransportException
Thrown when a pack exceeds a given size limit- Since:
- 3.3
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description TooLargePackException(long packSizeLimit)
Construct a too large pack exception.TooLargePackException(URIish uri, java.lang.String s)
Construct a too large pack exception.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TooLargePackException
public TooLargePackException(long packSizeLimit)
Construct a too large pack exception.- Parameters:
packSizeLimit
- the pack size limit (in bytes) that was exceeded
-
TooLargePackException
public TooLargePackException(URIish uri, java.lang.String s)
Construct a too large pack exception.- Parameters:
uri
- URI used for transports
- message- Since:
- 4.0
-
-