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

com.xzixi.websocket.interceptablewebsocket.exception.InterceptableWebsocketException Maven / Gradle / Ivy

The newest version!
package com.xzixi.websocket.interceptablewebsocket.exception;

/**
 * @author 薛凌康
 */
public class InterceptableWebsocketException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    public InterceptableWebsocketException() {
    }

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

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

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

    public InterceptableWebsocketException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy