org.redmine.ta.RedmineException Maven / Gradle / Ivy
package org.redmine.ta;
public class RedmineException extends Exception {
private static final long serialVersionUID = -1592189045756043062L;
public RedmineException() {
}
public RedmineException(String message, Throwable cause) {
super(message, cause);
}
public RedmineException(String message) {
super(message);
}
public RedmineException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy