fixed JavaDoc @link missing close curly bracket

Former-commit-id: 632dd4de562a1036883103ce89df8f98ee5d8804
This commit is contained in:
Jeremy Long
2014-03-02 12:26:56 -05:00
parent 3f28b30e95
commit 9d263f11e5

View File

@@ -23,6 +23,7 @@ package org.owasp.dependencycheck.data.nuget;
* @author colezlaw * @author colezlaw
*/ */
public class NuspecParseException extends Exception { public class NuspecParseException extends Exception {
/** /**
* The serialVersionUID * The serialVersionUID
*/ */
@@ -31,20 +32,19 @@ public class NuspecParseException extends Exception {
/** /**
* Constructs a new exception with <code>null</code> as its detail message. * Constructs a new exception with <code>null</code> as its detail message.
* *
* The cause is not initialized, and may subsequently be initialized by a call * The cause is not initialized, and may subsequently be initialized by a call to
* to {@link java.lang.Throwable#initCause(java.lang.Throwable)}. * {@link java.lang.Throwable#initCause(java.lang.Throwable)}.
*/ */
public NuspecParseException() { public NuspecParseException() {
super(); super();
} }
/** /**
* Constructs a new exception with the specified detail message. The cause is * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
* not initialized, and may subsequently be initialized by a call to * be initialized by a call to {@link java.lang.Throwable#initCause(java.lang.Throwable)}.
* {@link java.lang.Throwable#initCause(java.lang.Throwable).
* *
* @param message the detail message. The detail message is saved for later retrieval * @param message the detail message. The detail message is saved for later retrieval by the
* by the {@link java.lang.Throwable#getMessage()} method. * {@link java.lang.Throwable#getMessage()} method.
*/ */
public NuspecParseException(String message) { public NuspecParseException(String message) {
super(message); super(message);
@@ -58,9 +58,8 @@ public class NuspecParseException extends Exception {
* *
* @param message the detail message (whcih is saved for later retrieval by the * @param message the detail message (whcih is saved for later retrieval by the
* {@link java.lang.Throwable#getMessage()} method. * {@link java.lang.Throwable#getMessage()} method.
* @param cause the cause (which is saved for later retrieval by the * @param cause the cause (which is saved for later retrieval by the {@link java.lang.Throwable#getCause()} method).
* {@link java.lang.Throwable#getCause()} method). (A <code>null</code> value is permitted, * (A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown).
* and indicates that the cause is nonexistent or unknown).
*/ */
public NuspecParseException(String message, Throwable cause) { public NuspecParseException(String message, Throwable cause) {
super(message, cause); super(message, cause);