Package org.eclipse.jgit.transport
Class ServiceMayNotContinueException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- org.eclipse.jgit.transport.ServiceMayNotContinueException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
UploadPackMayNotContinueException
public class ServiceMayNotContinueException extends java.io.IOException
Indicates a transport service may not continue execution.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceMayNotContinueException()
Initialize with no message.ServiceMayNotContinueException(java.lang.String msg)
ServiceMayNotContinueException(java.lang.String msg, java.lang.Throwable cause)
ServiceMayNotContinueException(java.lang.Throwable cause)
Initialize with an "internal server error" message and a cause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isOutput()
void
setOutput()
Mark this message has being sent to the client.
-
-
-
Constructor Detail
-
ServiceMayNotContinueException
public ServiceMayNotContinueException()
Initialize with no message.
-
ServiceMayNotContinueException
public ServiceMayNotContinueException(java.lang.String msg)
- Parameters:
msg
- a message explaining why it cannot continue. This message may be shown to an end-user.
-
ServiceMayNotContinueException
public ServiceMayNotContinueException(java.lang.String msg, java.lang.Throwable cause)
- Parameters:
msg
- a message explaining why it cannot continue. This message may be shown to an end-user.cause
- the cause of the exception.- Since:
- 3.2
-
ServiceMayNotContinueException
public ServiceMayNotContinueException(java.lang.Throwable cause)
Initialize with an "internal server error" message and a cause.- Parameters:
cause
- the cause of the exception.- Since:
- 3.2
-
-