Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for FessUserNotFoundException (3.47 sec)

  1. src/main/java/org/codelibs/fess/exception/FessUserNotFoundException.java

     * when the specified user does not exist in the system.
     */
    public class FessUserNotFoundException extends FessSystemException {
    
        /** Serial version UID for serialization compatibility */
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new FessUserNotFoundException with the specified username.
         *
         * @param username the username that was not found
         */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/UserService.java

                        }
                        throw new FessUserNotFoundException(username);
                    });
                } else {
                    logger.warn("Password change not applied by authentication manager: username={}", username);
                }
            } catch (final FessUserNotFoundException e) {
                throw e;
            } catch (final Exception e) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Mon Nov 24 02:07:40 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top