org.redmine.ta.RedmineAuthenticationException 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;
/**
* User or password (or API access key) not recognized.
*/
public class RedmineAuthenticationException extends RedmineSecurityException {
private static final long serialVersionUID = -2494397318821827279L;
public RedmineAuthenticationException(String message) {
super(message);
}
}