Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CommandExecutionException (0.34 sec)

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

     */
    package org.codelibs.fess.exception;
    
    public class CommandExecutionException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        public CommandExecutionException(final String message) {
            super(message);
        }
    
        public CommandExecutionException(final String message, final Throwable e) {
            super(message, e);
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 991 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                    throw new CommandExecutionException("The command execution is timeout: " + String.join(" ", commands));
                }
                return exitValue;
            } catch (final CrawlerSystemException e) {
                throw e;
            } catch (final InterruptedException e) {
                if (mt != null && mt.isTeminated()) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
Back to top