org.redmine.ta.RedmineConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redmine-java-api Show documentation
Show all versions of redmine-java-api Show documentation
Free open-source Java API for Redmine and Chiliproject bug/task management systems.
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);
}
}