- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for JobProcessingException (0.36 sec)
-
src/main/java/org/codelibs/fess/exception/JobProcessingException.java
* the execution or processing of jobs in the system. */ public class JobProcessingException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructs a new JobProcessingException with the specified cause. * * @param e the cause of the exception */ public JobProcessingException(final Throwable e) { super(e); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
throw new JobProcessingException(out.toString()); } ComponentUtil.getPopularWordHelper().clearCache(); } catch (final JobProcessingException e) { throw e; } catch (final Exception e) { throw new JobProcessingException("Python Process terminated.", e); } finally {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
return groovyShell.evaluate(template); } catch (final JobProcessingException e) { // Rethrow JobProcessingException to allow scripts to signal job-specific errors // that should be handled by the job framework if (logger.isDebugEnabled()) { logger.debug("Script raised JobProcessingException", e); } throw e; } catch (final Exception e) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.5K bytes - Viewed (0)