- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for CommandExecutionException (0.5 sec)
-
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
*/ public class CommandExecutionException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor with error message. * @param message The error message describing the command execution failure. */ public CommandExecutionException(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.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
} public void test_serialVersionUID() { // Test that serialVersionUID is properly set CommandExecutionException exception1 = new CommandExecutionException("Test"); CommandExecutionException exception2 = new CommandExecutionException("Test"); // Both instances should be of the same class assertEquals(exception1.getClass(), exception2.getClass());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0)