aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/ServiceNotAuthorizedException.java
blob: c246541f876cb36291d02a621f055d3b5fd98a0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
 * Copyright (C) 2009-2010, Google Inc. and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.transport.resolver;

import org.eclipse.jgit.internal.JGitText;

/**
 * Indicates that the requested service requires authentication that
 * the current user has not provided.
 * <p>
 * This corresponds to response code
 * {@code HttpServletResponse.SC_UNAUTHORIZED}.
 */
public class ServiceNotAuthorizedException extends Exception {
	private static final long serialVersionUID = 1L;

	/**
	 * Constructor for ServiceNotAuthorizedException.
	 *
	 * @param message
	 *            error message
	 * @param cause
	 *            a {@link java.lang.Throwable} object.
	 * @since 4.1
	 */
	public ServiceNotAuthorizedException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Constructor for ServiceNotAuthorizedException.
	 *
	 * @param message
	 *            error message
	 * @since 4.1
	 */
	public ServiceNotAuthorizedException(String message) {
		super(message);
	}

	/**
	 * Indicates that the requested service requires authentication.
	 */
	public ServiceNotAuthorizedException() {
		super(JGitText.get().unauthorized);
	}
}