mirror of https://github.com/apache/archiva.git
due to chained user manager we must check cause in case of a UserNotFoundException
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1469310 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3bba579fe4
commit
e2cee99283
|
@ -231,6 +231,10 @@ public class ArchivaConfigurableUsersManager
|
|||
{
|
||||
if ( lastException != null )
|
||||
{
|
||||
if ( lastException instanceof UserNotFoundException )
|
||||
{
|
||||
throw (UserNotFoundException) lastException;
|
||||
}
|
||||
throw new UserManagerException( lastException.getMessage(), lastException );
|
||||
}
|
||||
}
|
||||
|
@ -451,7 +455,6 @@ public class ArchivaConfigurableUsersManager
|
|||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public boolean isFinalImplementation()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue