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);
}
}