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