]> source.dussan.org Git - jgit.git/commitdiff
Tweak exception Javadoc to be eclipse-clean 75/49975/1
authorJonathan Nieder <jrn@google.com>
Wed, 10 Jun 2015 22:08:41 +0000 (15:08 -0700)
committerJonathan Nieder <jrn@google.com>
Wed, 10 Jun 2015 22:08:41 +0000 (15:08 -0700)
Bug: 469887
Change-Id: Ic189efc50d9c1f573dda0c79e5b0dad0813a5577
Signed-off-by: Jonathan Nieder <jrn@google.com>
org.eclipse.jgit/src/org/eclipse/jgit/errors/DiffInterruptedException.java
org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/ServiceNotAuthorizedException.java

index 94c8e5d1d1a72978e503f43567c2f6b8a95c3a57..5f9ce351ad577cd6f9b1e4c4c7dc4469d022fdae 100644 (file)
@@ -69,6 +69,7 @@ public class DiffInterruptedException extends RuntimeException {
                super(message);
        }
 
+       /** Indicates that the thread computing a diff was interrupted. */
        public DiffInterruptedException() {
                super();
        }
index a9e3e42eddd7d16b7a0fdf729a529d3ec160044c..57a61928b5c28c4d20429741492b8755f9cbf21f 100644 (file)
@@ -50,7 +50,7 @@ import org.eclipse.jgit.internal.JGitText;
  * 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;
@@ -72,6 +72,7 @@ public class ServiceNotAuthorizedException extends Exception {
                super(message);
        }
 
+       /** Indicates that the requested service requires authentication. */
        public ServiceNotAuthorizedException() {
                super(JGitText.get().unauthorized);
        }