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

org.voovan.http.websocket.exception.WebSocketFilterException Maven / Gradle / Ivy

package org.voovan.http.websocket.exception;

import java.io.IOException;

public class WebSocketFilterException extends IOException {

	private static final long	serialVersionUID	= 1L;

	public WebSocketFilterException(String message, Exception e){
		super(message);
		this.setStackTrace(e.getStackTrace());
	}

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy