Package org.eclipse.jgit.api.errors
Class TooLargeObjectInPackException
- 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.TooLargeObjectInPackException
-
- All Implemented Interfaces:
java.io.Serializable
public class TooLargeObjectInPackException extends TransportException
Exception thrown when PackParser finds an object larger than a predefined limit- Since:
- 4.4
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description TooLargeObjectInPackException(java.lang.String msg)
Constructor for TooLargeObjectInPackExceptionTooLargeObjectInPackException(java.lang.String msg, java.lang.Throwable cause)
Constructor for TooLargeObjectInPackException
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TooLargeObjectInPackException
public TooLargeObjectInPackException(java.lang.String msg)
Constructor for TooLargeObjectInPackException- Parameters:
msg
- message describing the transport failure.
-
TooLargeObjectInPackException
public TooLargeObjectInPackException(java.lang.String msg, java.lang.Throwable cause)
Constructor for TooLargeObjectInPackException- Parameters:
msg
- message describing the transport exception.cause
- why the transport failed.
-
-