Package org.apache.coyote
Class CloseNowException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.io.IOException
- 
- org.apache.coyote.CloseNowException
 
 
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable
 
 public class CloseNowException extends java.io.IOExceptionThis exception is thrown to signal to the Tomcat internals that an error has occurred that requires the connection to be closed. For multiplexed protocols such as HTTP/2, this means the channel must be closed but the connection can continue. For non-multiplexed protocols, the connection must be closed. It corresponds toErrorState.CLOSE_NOW.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description CloseNowException()CloseNowException(java.lang.String message)CloseNowException(java.lang.String message, java.lang.Throwable cause)CloseNowException(java.lang.Throwable cause)
 
- 
- 
- 
Constructor Detail- 
CloseNowExceptionpublic CloseNowException() 
 - 
CloseNowExceptionpublic CloseNowException(java.lang.String message, java.lang.Throwable cause)
 - 
CloseNowExceptionpublic CloseNowException(java.lang.String message) 
 - 
CloseNowExceptionpublic CloseNowException(java.lang.Throwable cause) 
 
- 
 
-