
com.aol.micro.server.s3.EmptyInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micro-s3 Show documentation
Show all versions of micro-s3 Show documentation
Opinionated rest microservices
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