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

io.github.perplexhub.rsql.RSQLException Maven / Gradle / Ivy

There is a newer version: 6.0.23
Show newest version
package io.github.perplexhub.rsql;

/**
 * Thrown to indicate that generic problems within library. It is a superclass for all exceptions defined here.
 */
public class RSQLException extends RuntimeException {
  public RSQLException() {
    super();
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy