* the current user has not provided.
* <p>
* This corresponds to response code
- * {@link javax.servlet.http.HttpServletResponse#SC_UNAUTHORIZED}.
+ * {@code HttpServletResponse.SC_UNAUTHORIZED}.
*/
public class ServiceNotAuthorizedException extends Exception {
private static final long serialVersionUID = 1L;
super(message);
}
+ /** Indicates that the requested service requires authentication. */
public ServiceNotAuthorizedException() {
super(JGitText.get().unauthorized);
}