Package com.mooltiverse.oss.nyx.services
Class GitAuthenticationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.mooltiverse.oss.nyx.services.GitServiceException
-
- com.mooltiverse.oss.nyx.services.GitSecurityException
-
- com.mooltiverse.oss.nyx.services.GitAuthenticationException
-
- All Implemented Interfaces:
Serializable
public class GitAuthenticationException extends GitSecurityException
An exception meaning that authentication failed or expired.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GitAuthenticationException(String message)
Constructs a new exception with the specified detail message.GitAuthenticationException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.GitAuthenticationException(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
-
GitAuthenticationException
public GitAuthenticationException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.
-
GitAuthenticationException
public GitAuthenticationException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail message.cause
- the cause
-
GitAuthenticationException
public GitAuthenticationException(Throwable cause)
Constructs a new exception with the specified cause- Parameters:
cause
- the cause
-
-