org.redmine.ta.RedmineCommunicationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
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);
}
}