Package jakarta.websocket
Class DeploymentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
jakarta.websocket.DeploymentException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- DeploymentHandshakeException
Checked exception indicating some kind of failure either to publish an endpoint on its server, or a failure to
 connect a client to its server.
- Author:
- dannycoward
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionDeploymentException(String message) Creates a deployment exception with the given reason for the deployment failure.DeploymentException(String message, Throwable cause) Creates a deployment exception with the given reason for the deployment failure and wrapped cause of the failure.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
DeploymentExceptionCreates a deployment exception with the given reason for the deployment failure.- Parameters:
- message- the reason for the failure.
 
- 
DeploymentExceptionCreates a deployment exception with the given reason for the deployment failure and wrapped cause of the failure.- Parameters:
- message- the reason for the failure.
- cause- the cause of the problem.
 
 
-