All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redmine.ta.RedmineCommunicationException Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

The newest version!
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 - 2024 Weber Informatics LLC | Privacy Policy