no.mnemonic.services.common.api.ResultSetStreamInterruptedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-api Show documentation
Show all versions of service-api Show documentation
Common basic API and interfaces for services
package no.mnemonic.services.common.api;
public class ResultSetStreamInterruptedException extends RuntimeException {
private static final long serialVersionUID = 1348167840449469021L;
public ResultSetStreamInterruptedException() {
}
public ResultSetStreamInterruptedException(String message) {
super(message);
}
public ResultSetStreamInterruptedException(String message, Throwable cause) {
super(message, cause);
}
public ResultSetStreamInterruptedException(Throwable cause) {
super(cause);
}
}