io.rainfall.SyntaxException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rainfall-core Show documentation
Show all versions of rainfall-core Show documentation
Rainfall-core is the core of the Rainfall framework
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