All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.websockets.next.WebSocketClientException Maven / Gradle / Ivy

There is a newer version: 3.17.2
Show newest version
package io.quarkus.websockets.next;

import io.smallrye.common.annotation.Experimental;

@Experimental("This API is experimental and may change in the future")
public class WebSocketClientException extends WebSocketException {

    private static final long serialVersionUID = -4213710383874397185L;

    public WebSocketClientException(String message, Throwable cause) {
        super(message, cause);
    }

    public WebSocketClientException(String message) {
        super(message);
    }

    public WebSocketClientException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy