com.taskadapter.redmineapi.RedmineTransportException 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.
This project was originally a part of Task Adapter application (http://www.taskadapter.com)
and then was open-sourced.
The newest version!
package com.taskadapter.redmineapi;
public class RedmineTransportException extends RedmineCommunicationException {
private static final long serialVersionUID = 3463778589975943695L;
public RedmineTransportException(Throwable cause) {
super(cause);
}
public RedmineTransportException(String message, Throwable cause) {
super(message, cause);
}
public RedmineTransportException(String message) {
super(message);
}
}