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

no.mnemonic.services.common.api.ResultSetStreamInterruptedException Maven / Gradle / Ivy

There is a newer version: 0.6.11
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy