Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Throwable (1.62 sec)

  1. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

            failureUrlBhv.queryDelete(cb -> {
                cb.query().setConfigId_Equal(configId);
            });
        }
    
        public void store(final CrawlingConfig crawlingConfig, final String errorName, final String url, final Throwable e) {
            if (e instanceof ContainerNotAvailableException) {
                return;
            }
    
            final FailureUrlBhv bhv = ComponentUtil.getComponent(FailureUrlBhv.class);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/StorageException.java

     */
    package org.codelibs.fess.exception;
    
    public class StorageException extends FessSystemException {
        private static final long serialVersionUID = 1L;
    
        public StorageException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public StorageException(final String message) {
            super(message);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 970 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

    package org.codelibs.fess.exception;
    
    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public LdapOperationException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public LdapOperationException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 990 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/ScriptEngineException.java

        private static final long serialVersionUID = 1L;
    
        public ScriptEngineException(final String message) {
            super(message);
        }
    
        public ScriptEngineException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 986 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/client/SearchEngineClientException.java

    public class SearchEngineClientException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public SearchEngineClientException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public SearchEngineClientException(final String message) {
            super(message);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

        private static final long serialVersionUID = 1L;
    
        private final transient VaMessenger<FessMessages> messageCode;
    
        public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) {
            super(message, cause);
            this.messageCode = messageCode;
        }
    
        public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message) {
            super(message);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java

                    }
                    jobLog.setScriptResult(ret.toString());
                }
                jobLog.setJobStatus(Constants.OK);
            } catch (final Throwable t) {
                logger.warn("Failed to execute {}: {}", id, script, t);
                jobLog.setJobStatus(Constants.FAIL);
                jobLog.setScriptResult(systemHelper.abbreviateLongText(t.getLocalizedMessage()));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                } else if (logger.isInfoEnabled()) {
                    logger.info("ThumbnailGenerator is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
            } catch (final Throwable t) {
                logger.error("ThumbnailGenerator does not work correctly.", t);
                exitCode = Constants.EXIT_FAIL;
            } finally {
                if (systemMonitorTask != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

                } else {
                    try {
                        dataStore.store(dataConfig, indexUpdateCallback, initParamMap);
                    } catch (final Throwable e) {
                        logger.error("Failed to process a data crawling: {}", dataConfig.getName(), e);
                        ComponentUtil.getComponent(FailureUrlService.class).store(dataConfig, e.getClass().getCanonicalName(),
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                            urlQueue.getUrl(), urlQueue.getDepth() != null ? urlQueue.getDepth() + 1 : 1);
                } catch (final Throwable t) {
                    if (!ComponentUtil.available()) {
                        throw new ContainerNotAvailableException(t);
                    }
                    throw t;
                }
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
Back to top