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

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