Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JobNotFoundException (0.52 sec)

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

     */
    public class JobNotFoundException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new JobNotFoundException with a message derived from the scheduled job.
         *
         * @param scheduledJob the scheduled job that was not found
         */
        public JobNotFoundException(final ScheduledJob scheduledJob) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                if (jobProcess == null) {
                    throw new JobNotFoundException("Job for " + sessionId + " is not found.");
                }
                process = jobProcess.getProcess();
                if (process == null || !process.isAlive()) {
                    throw new JobNotFoundException("Process for " + sessionId + " is not running.");
                }
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 06:54:47 UTC 2025
    - 10.9K bytes
    - Viewed (0)
Back to top