fixed javadoc

Former-commit-id: 2402251f2157864ee3c51dd571cb9d21e17856e6
This commit is contained in:
Jeremy Long
2014-10-08 06:21:20 -04:00
parent 92bd305b00
commit 4aad3471af

View File

@@ -26,11 +26,6 @@ import java.io.IOException;
*/
public class SuppressionParseException extends IOException {
/**
* The serial version UID.
*/
private static final long serialVersionUID = 1L;
/**
* Creates a new SuppressionParseException.
*/
@@ -50,7 +45,7 @@ public class SuppressionParseException extends IOException {
/**
* Creates a new SuppressionParseException.
*
* @param ex the cause of the download failure.
* @param ex the cause of the parse exception
*/
public SuppressionParseException(Throwable ex) {
super(ex);
@@ -60,7 +55,7 @@ public class SuppressionParseException extends IOException {
* Creates a new SuppressionParseException.
*
* @param msg a message for the exception.
* @param ex the cause of the download failure.
* @param ex the cause of the parse exception
*/
public SuppressionParseException(String msg, Throwable ex) {
super(msg, ex);