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

com.taskadapter.redmineapi.RedmineConfigurationException 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;

/**
 * Some Redmine configuration is not set properly. E.g. invalid port number is provided to RedmineManager class.
 */
public class RedmineConfigurationException extends RuntimeException {
	private static final long serialVersionUID = 5935193308676164988L;

	public RedmineConfigurationException(String message, NumberFormatException e) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy