![JAR search and dependency download from the Maven repository](/logo.png)
com.taskadapter.redmineapi.RedmineFormatException 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)
The newest version!
package com.taskadapter.redmineapi;
public class RedmineFormatException extends RedmineCommunicationException {
private static final long serialVersionUID = 4024202727798727085L;
public RedmineFormatException(String message) {
super(message);
}
public RedmineFormatException(Throwable cause) {
super(cause);
}
public RedmineFormatException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy