- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for JobNotFoundException (0.86 sec)
-
src/test/java/org/codelibs/fess/helper/ProcessHelperTest.java
assertTrue(true); } public void test_sendCommand_jobNotFound() { try { processHelper.sendCommand("nonexistent", "test command"); fail("Expected JobNotFoundException"); } catch (JobNotFoundException e) { assertTrue(e.getMessage().contains("Job for nonexistent is not found")); } } public void test_startProcess_basicCommand() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.io.CloseableUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.exception.JobNotFoundException; import org.codelibs.fess.exception.JobProcessingException; import org.codelibs.fess.util.InputStreamThread; import org.codelibs.fess.util.JobProcess; import jakarta.annotation.PreDestroy; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.8K bytes - Viewed (0)