Package org.eclipse.jgit.transport
Class RequestNotYetReadException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalStateException
-
- org.eclipse.jgit.transport.RequestNotYetReadException
-
- All Implemented Interfaces:
java.io.Serializable
public class RequestNotYetReadException extends java.lang.IllegalStateException
Indicates that a client request has not yet been read from the wire.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description RequestNotYetReadException()
Initialize with no message.RequestNotYetReadException(java.lang.String msg)
Constructor for RequestNotYetReadException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
RequestNotYetReadException
public RequestNotYetReadException()
Initialize with no message.
-
RequestNotYetReadException
public RequestNotYetReadException(java.lang.String msg)
Constructor for RequestNotYetReadException.
- Parameters:
msg
- a message explaining the state. This message should not be shown to an end-user.
-
-