com.taskadapter.redmineapi.RedmineSecurityException 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.
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;
/**
* covers two cases:
*
* - user or password not recognized
* - authenticated successfully, but the operation is not permitted for this user
*
*/
public class RedmineSecurityException extends RedmineException {
private static final long serialVersionUID = -7112215624257956273L;
public RedmineSecurityException(String message) {
super(message);
}
}