diff --git a/src/java/org/apache/commons/lang/NullArgumentException.java b/src/java/org/apache/commons/lang/NullArgumentException.java index 64c457e11..b04aac549 100644 --- a/src/java/org/apache/commons/lang/NullArgumentException.java +++ b/src/java/org/apache/commons/lang/NullArgumentException.java @@ -60,17 +60,16 @@ * @author Matthew Hawthorne * @author Stephen Colebourne * @since 2.0 - * @version $Id: NullArgumentException.java,v 1.5 2003/08/18 02:22:23 bayard Exp $ + * @version $Id: NullArgumentException.java,v 1.6 2003/09/24 20:28:25 fredrik Exp $ */ public class NullArgumentException extends IllegalArgumentException { - /** - *

Instantiates with the given argument name.

- * - * @param argName the name of the argument that was null. - */ - public NullArgumentException(String argName) { - super(argName + " must not be null."); - } - + /** + *

Instantiates with the given argument name.

+ * + * @param argName the name of the argument that was null. + */ + public NullArgumentException(String argName) { + super(argName + " must not be null."); + } } diff --git a/src/java/org/apache/commons/lang/UnhandledException.java b/src/java/org/apache/commons/lang/UnhandledException.java index 4a15b7fbd..245d0a959 100644 --- a/src/java/org/apache/commons/lang/UnhandledException.java +++ b/src/java/org/apache/commons/lang/UnhandledException.java @@ -58,30 +58,30 @@ /** * Thrown when it is impossible or undesirable to consume * or throw a checked exception. - * + * * @author Matthew Hawthorne * @since 2.0 - * @version $Id: UnhandledException.java,v 1.3 2003/08/18 02:22:23 bayard Exp $ + * @version $Id: UnhandledException.java,v 1.4 2003/09/24 20:28:25 fredrik Exp $ */ public class UnhandledException extends NestableRuntimeException { /** * Constructs the exception using a cause. - * + * * @param cause the underlying cause */ - public UnhandledException(Throwable cause) { - super(cause); - } + public UnhandledException(Throwable cause) { + super(cause); + } /** * Constructs the exception using a message and cause. - * + * * @param message the message to use * @param cause the underlying cause */ - public UnhandledException(String message, Throwable cause) { - super(message, cause); - } + public UnhandledException(String message, Throwable cause) { + super(message, cause); + } }