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

com.taskadapter.redmineapi.AuthenticationException Maven / Gradle / Ivy

Go to download

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;

/**
 * AuthenticationException is thrown when
 * 
    *
  • a user was not authorized (due to invalid or no API access key used when the server requires authorization) *
  • OR the user was recognized, but the user permissions do not allow the operation * (e.g. trying to create an issue in a project, which the user has no access to). *
* * @author Alexey Skorokhodov */ public class AuthenticationException extends Exception { private static final long serialVersionUID = 1L; public AuthenticationException(String msg) { super(msg); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy