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

org.redmine.ta.NotAuthorizedException Maven / Gradle / Ivy

Go to download

Free open-source Java API for Redmine and Chiliproject bug/task management systems.

There is a newer version: 1.15.0
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy