Package com.mooltiverse.oss.nyx.services
Class GitTransportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.mooltiverse.oss.nyx.services.GitServiceException
-
- com.mooltiverse.oss.nyx.services.GitTransportException
-
- All Implemented Interfaces:
Serializable
public class GitTransportException extends GitServiceException
An exception meaning that something in the transport or connection went wrong.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitTransportException(String message)
Constructs a new exception with the specified detail message.GitTransportException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.GitTransportException(Throwable cause)
Constructs a new exception with the specified cause
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
GitTransportException
public GitTransportException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
GitTransportException
public GitTransportException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause
-
GitTransportException
public GitTransportException(Throwable cause)
Constructs a new exception with the specified cause- Parameters:
cause
- the cause
-
-