Minor Javadoc correction.

This commit is contained in:
Luke Taylor 2008-12-16 20:16:56 +00:00
parent 681f1ee00c
commit a1bd48733a
1 changed files with 3 additions and 5 deletions

View File

@ -16,7 +16,7 @@
package org.springframework.security; package org.springframework.security;
/** /**
* Abstract superclass for all exceptions related an {@link Authentication} object being invalid for whatever * Abstract superclass for all exceptions related to an {@link Authentication} object being invalid for whatever
* reason. * reason.
* *
* @author Ben Alex * @author Ben Alex
@ -31,8 +31,7 @@ public abstract class AuthenticationException extends SpringSecurityException {
//~ Constructors =================================================================================================== //~ Constructors ===================================================================================================
/** /**
* Constructs an <code>AuthenticationException</code> with the specified * Constructs an <code>AuthenticationException</code> with the specified message and root cause.
* message and root cause.
* *
* @param msg the detail message * @param msg the detail message
* @param t the root cause * @param t the root cause
@ -42,8 +41,7 @@ public abstract class AuthenticationException extends SpringSecurityException {
} }
/** /**
* Constructs an <code>AuthenticationException</code> with the specified * Constructs an <code>AuthenticationException</code> with the specified message and no root cause.
* message and no root cause.
* *
* @param msg the detail message * @param msg the detail message
*/ */