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

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

Go to download

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

There is a newer version: 1.15.0
Show newest version
package org.redmine.ta;

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy