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

io.rainfall.SyntaxException Maven / Gradle / Ivy

There is a newer version: 1.6.10
Show newest version
package io.rainfall;

/**
 * Generic framework exception
 *
 * @author Aurelien Broszniowski
 */
public class SyntaxException extends Exception {

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

  public SyntaxException(final String message) {
    super("Test syntax problem. " + message);
  }

  public SyntaxException(final String message, final Throwable cause) {
    super("Test syntax problem. " + message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy