Package org.apache.mina.filter.keepalive
Class KeepAliveRequestTimeoutException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.apache.mina.filter.keepalive.KeepAliveRequestTimeoutException
-
- All Implemented Interfaces:
Serializable
public class KeepAliveRequestTimeoutException extends RuntimeException
ARuntimeExceptionwhich is thrown when a keep-alive response message was not received within a certain timeout.- Author:
- Apache MINA Project
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeepAliveRequestTimeoutException()Creates a new instance of a KeepAliveRequestTimeoutExceptionKeepAliveRequestTimeoutException(String message)Creates a new instance of a KeepAliveRequestTimeoutExceptionKeepAliveRequestTimeoutException(String message, Throwable cause)Creates a new instance of a KeepAliveRequestTimeoutExceptionKeepAliveRequestTimeoutException(Throwable cause)Creates a new instance of a KeepAliveRequestTimeoutException
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
KeepAliveRequestTimeoutException
public KeepAliveRequestTimeoutException()
Creates a new instance of a KeepAliveRequestTimeoutException
-
KeepAliveRequestTimeoutException
public KeepAliveRequestTimeoutException(String message, Throwable cause)
Creates a new instance of a KeepAliveRequestTimeoutException- Parameters:
message- The detail messagecause- The Exception's cause
-
KeepAliveRequestTimeoutException
public KeepAliveRequestTimeoutException(String message)
Creates a new instance of a KeepAliveRequestTimeoutException- Parameters:
message- The detail message
-
KeepAliveRequestTimeoutException
public KeepAliveRequestTimeoutException(Throwable cause)
Creates a new instance of a KeepAliveRequestTimeoutException- Parameters:
cause- The Exception's cause
-
-