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

com.taskadapter.redmineapi.RedmineException Maven / Gradle / Ivy

Go to download

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 RedmineException extends Exception {
	private static final long serialVersionUID = -1592189045756043062L;

	public RedmineException() {
    }

    public RedmineException(String message, Throwable cause) {
        super(message, cause);
    }

    public RedmineException(String message) {
        super(message);
    }

    public RedmineException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy