org.webpieces.webserver.impl.filereaders.ReadOrSendException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-webserver Show documentation
Show all versions of http-webserver Show documentation
The full webpieces server AS A library
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);
}
}