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

org.webpieces.webserver.impl.filereaders.XFileReadException 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 XFileReadException extends CompletionException {

	private static final long serialVersionUID = 1L;

	public XFileReadException() {
		super();
	}

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

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

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

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy