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

org.redmine.ta.RedmineFormatException 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;

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 - 2024 Weber Informatics LLC | Privacy Policy