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

org.webpieces.webserver.impl.filereaders.ReadOrSendException Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package org.webpieces.webserver.impl.filereaders;

import java.util.concurrent.CompletionException;

public class ReadOrSendException extends CompletionException {

	private static final long serialVersionUID = 1L;

	public ReadOrSendException() {
	}

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy