- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for LdapConfigurationException (0.16 sec)
-
src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java
*/ public class LdapConfigurationException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new LDAP configuration exception with the specified detail message. * * @param message The detail message. */ public LdapConfigurationException(final String message) { super(message); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
// Test creating multiple instances with different messages LdapConfigurationException exception1 = new LdapConfigurationException("Error 1"); LdapConfigurationException exception2 = new LdapConfigurationException("Error 2"); LdapConfigurationException exception3 = new LdapConfigurationException("Error 3"); assertEquals("Error 1", exception1.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0)