140141142143144145146147148
lastException = e; } } if ( lastException != null && allFailed ) { throw new UserManagerException( lastException.getMessage(), lastException ); } return user; }
174175176177178179180181
lastException = e; } } if ( lastException != null && allFailed ) { throw new UserManagerException( lastException.getMessage(), lastException ); } }
233234235236237238239240241242243
{ if ( lastException instanceof UserNotFoundException ) { throw (UserNotFoundException) lastException; } throw new UserManagerException( lastException.getMessage(), lastException ); } } return user; }
416417418419420421422423424
447448449450451452453454455
lastException = e; } } if ( lastException != null && allFailed ) { throw new UserManagerException( lastException.getMessage(), lastException ); } return exists; }