Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for Throwable (0.28 sec)

  1. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

            try {
                final CrawlerContext crawlerContext = (CrawlerContext) objs[0];
                final UrlQueue<?> urlQueue = (UrlQueue<?>) objs[1];
                Throwable e = (Throwable) objs[2];
                if (e instanceof MultipleCrawlingAccessException) {
                    final Throwable[] causes = ((MultipleCrawlingAccessException) e).getCauses();
                    if (causes.length > 0) {
                        e = causes[causes.length - 1];
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exception/JobProcessingException.java

    public class JobProcessingException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public JobProcessingException(final Throwable e) {
            super(e);
        }
    
        public JobProcessingException(final String message, final Throwable e) {
            super(message, e);
        }
    
        public JobProcessingException(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)
  3. src/main/java/org/codelibs/fess/exception/DataStoreException.java

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

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

     */
    package org.codelibs.fess.exception;
    
    public class ThemeException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public ThemeException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public ThemeException(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
    - 966 bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        }
    
        @Override
        public OptionalThing<ApiResponse> handleServerException(final ApiFailureResource resource, final Throwable cause) {
            return OptionalThing.of(asJson(createFailureBean(Status.SYSTEM_ERROR, createMessage(resource, cause))));
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/InvalidQueryException.java

        private static final long serialVersionUID = 1L;
    
        private final transient VaMessenger<FessMessages> messageCode;
    
        public InvalidQueryException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) {
            super(message, cause);
            this.messageCode = messageCode;
        }
    
        public InvalidQueryException(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)
  8. src/main/java/org/codelibs/fess/dict/DictionaryException.java

    public class DictionaryException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public DictionaryException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public DictionaryException(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)
  9. src/main/java/org/codelibs/fess/exception/UserRoleLoginException.java

            this.actionClass = actionClass;
        }
    
        public Class<?> getActionClass() {
            return actionClass;
        }
    
        @Override
        public synchronized Throwable fillInStackTrace() {
            return null;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/exception/GsaConfigException.java

     */
    package org.codelibs.fess.exception;
    
    public class GsaConfigException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public GsaConfigException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        public GsaConfigException(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
    - 978 bytes
    - Viewed (0)
Back to top