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

com.fastchar.socket.exceptions.FastWebSocketException Maven / Gradle / Ivy

package com.fastchar.socket.exceptions;

public class FastWebSocketException extends RuntimeException{

    public FastWebSocketException() {
    }

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy