Class ServiceNotEnabledException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.eclipse.jgit.transport.resolver.ServiceNotEnabledException
-
- All Implemented Interfaces:
Serializable
public class ServiceNotEnabledException extends Exception
Indicates the request service is not enabled on a repository.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceNotEnabledException()
Indicates the request service is not available.ServiceNotEnabledException(String message)
Constructor for ServiceNotEnabledException.ServiceNotEnabledException(String message, Throwable cause)
Constructor for ServiceNotEnabledException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ServiceNotEnabledException
public ServiceNotEnabledException(String message, Throwable cause)
Constructor for ServiceNotEnabledException.- Parameters:
message
- error messagecause
- aThrowable
object.- Since:
- 4.1
-
ServiceNotEnabledException
public ServiceNotEnabledException(String message)
Constructor for ServiceNotEnabledException.- Parameters:
message
- error message- Since:
- 4.1
-
ServiceNotEnabledException
public ServiceNotEnabledException()
Indicates the request service is not available.
-
-