Tweak exception Javadoc to be eclipse-clean

Bug: 469887
Change-Id: Ic189efc50d9c1f573dda0c79e5b0dad0813a5577
Signed-off-by: Jonathan Nieder <jrn@google.com>
This commit is contained in:
Jonathan Nieder 2015-06-10 15:08:41 -07:00
parent 2508f1695f
commit 3b7ca2b8a8
2 changed files with 3 additions and 1 deletions

View File

@ -69,6 +69,7 @@ public DiffInterruptedException(String message) {
super(message); super(message);
} }
/** Indicates that the thread computing a diff was interrupted. */
public DiffInterruptedException() { public DiffInterruptedException() {
super(); super();
} }

View File

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