瀏覽代碼

Tweak exception Javadoc to be eclipse-clean

Bug: 469887
Change-Id: Ic189efc50d9c1f573dda0c79e5b0dad0813a5577
Signed-off-by: Jonathan Nieder <jrn@google.com>
tags/v4.1.0.201509280440-r
Jonathan Nieder 9 年之前
父節點
當前提交
3b7ca2b8a8

+ 1
- 0
org.eclipse.jgit/src/org/eclipse/jgit/errors/DiffInterruptedException.java 查看文件

super(message); super(message);
} }


/** Indicates that the thread computing a diff was interrupted. */
public DiffInterruptedException() { public DiffInterruptedException() {
super(); super();
} }

+ 2
- 1
org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/ServiceNotAuthorizedException.java 查看文件

* 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;
super(message); super(message);
} }


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

Loading…
取消
儲存