- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for SsoProcessException (0.05 sec)
-
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
*/ public class SsoProcessException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new SSO process exception with the specified detailed message. * * @param message The detailed error message explaining the cause of the exception */ public SsoProcessException(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.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java
SsoProcessException exception = new SsoProcessException(message, cause); assertEquals(message, exception.getMessage()); assertEquals(cause, exception.getCause()); } public void test_constructor_withNullMessage() { // Test constructor with null message SsoProcessException exception = new SsoProcessException((String) null);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0)