Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ScheduledJobException (0.6 sec)

  1. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

            // Test constructor with null message
            ScheduledJobException exception = new ScheduledJobException(null);
    
            assertNull(exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithNullMessageAndCause() {
            // Test constructor with null message and null cause
            ScheduledJobException exception = new ScheduledJobException(null, null);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/JobHelper.java

                }
            } catch (final Exception e) {
                throw new ScheduledJobException("Failed to delete Job: " + scheduledJob, e);
            }
        }
    
        /**
         * Removes a scheduled job completely from the job manager.
         *
         * @param scheduledJob the scheduled job to remove
         * @throws ScheduledJobException if the job cannot be removed
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.8K bytes
    - Viewed (0)
Back to top