Package org.eclipse.jgit.errors
Class PackProtocolException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.TransportException
org.eclipse.jgit.errors.PackProtocolException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
WantNotValidException
Indicates a protocol error has occurred while fetching/pushing objects.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an PackProtocolException with the specified detail message.PackProtocolException
(String s, Throwable cause) Constructs an PackProtocolException with the specified detail message.PackProtocolException
(URIish uri, String s) Constructs an PackProtocolException with the specified detail message prefixed with provided URI.PackProtocolException
(URIish uri, String s, Throwable cause) Constructs an PackProtocolException with the specified detail message prefixed with provided URI. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
PackProtocolException
Constructs an PackProtocolException with the specified detail message prefixed with provided URI.- Parameters:
uri
- URI used for transports
- message, which may be shown to an end-user.
-
PackProtocolException
Constructs an PackProtocolException with the specified detail message prefixed with provided URI.- Parameters:
uri
- URI used for transports
- message, which may be shown to an end-user.cause
- root cause exception
-
PackProtocolException
Constructs an PackProtocolException with the specified detail message.- Parameters:
s
- message, which may be shown to an end-user.
-
PackProtocolException
Constructs an PackProtocolException with the specified detail message.- Parameters:
s
- message, which may be shown to an end-user.cause
- root cause exception
-