org.redmine.ta.NotAuthorizedException 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;
/**
* The user was authenticated successfully, but it does not have required privileges for the operation.
* E.g. trying to create an issue in a project, which the user has no access to.
*/
public class NotAuthorizedException extends RedmineSecurityException {
private static final long serialVersionUID = -6810250160379994395L;
public NotAuthorizedException(String message) {
super(message);
}
}