
com.github.raphc.maven.plugins.selenese4j.functions.NotMatchedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of selenese4j-maven-plugin-api Show documentation
Show all versions of selenese4j-maven-plugin-api Show documentation
This is the plugin API needed to develop your own function
The newest version!
/**
*
*/
package com.github.raphc.maven.plugins.selenese4j.functions;
/**
* @author Raphael
*
*/
public class NotMatchedException extends Exception {
/**
*
*/
private static final long serialVersionUID = 136162220875056317L;
/**
*
*/
public NotMatchedException() {
super();
}
/**
* @param message
* @param cause
*/
public NotMatchedException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param message
*/
public NotMatchedException(String message) {
super(message);
}
/**
* @param cause
*/
public NotMatchedException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy