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

com.aol.micro.server.s3.EmptyInputStream Maven / Gradle / Ivy

There is a newer version: 0.91.11
Show newest version
package com.aol.micro.server.s3;

import java.io.IOException;
import java.io.InputStream;

class EmptyInputStream extends InputStream {

	@Override
	public int available() {
		return 0;
	}
	
	@Override
	public int read() throws IOException {
		throw new IOException("Nothing to read here");
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy