Package org.eclipse.jgit.errors
Class TransportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.eclipse.jgit.errors.TransportException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
MissingBundlePrerequisiteException
,NoRemoteRepositoryException
,PackProtocolException
,RemoteRepositoryException
,RepositoryNotFoundException
,TooLargeObjectInPackException
,TooLargePackException
Indicates a protocol error has occurred while fetching/pushing objects.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionConstructs an TransportException with the specified detail message.TransportException
(String s, Throwable cause) Constructs an TransportException with the specified detail message.TransportException
(URIish uri, String s) Constructs an TransportException with the specified detail message prefixed with provided URI.TransportException
(URIish uri, String s, Throwable cause) Constructs an TransportException 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
-
TransportException
Constructs an TransportException with the specified detail message prefixed with provided URI.- Parameters:
uri
- URI used for transports
- message
-
TransportException
Constructs an TransportException with the specified detail message prefixed with provided URI.- Parameters:
uri
- URI used for transports
- messagecause
- root cause exception
-
TransportException
Constructs an TransportException with the specified detail message.- Parameters:
s
- message
-
TransportException
Constructs an TransportException with the specified detail message.- Parameters:
s
- messagecause
- root cause exception
-