Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 491 for pause (0.01 sec)

  1. src/main/java/org/codelibs/core/exception/EmptyArgumentException.java

         *            Message code
         * @param args
         *            Array of arguments
         * @param cause
         *            The cause of the exception
         */
        public EmptyArgumentException(final String argName, final String messageCode, final Object[] args, final Throwable cause) {
            super(argName, messageCode, args, cause);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Throwables.java

      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
       * throwable} followed by its cause hierarchy. Note that this is a snapshot of the cause chain and
       * will not reflect any subsequent changes to the cause chain.
       *
       * <p>Here's an example of how it can be used to find specific types of exceptions in the cause
       * chain:
       *
       * <pre>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            // Test constructor with null component name and valid cause
            Throwable cause = new RuntimeException("Test cause");
            ContainerNotAvailableException exception = new ContainerNotAvailableException(null, cause);
    
            assertEquals("null is not available.", exception.getMessage());
            assertEquals(cause, exception.getCause());
            assertNull(exception.getComponentName());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

         *
         * @param componentClass
         *            the component class
         * @param targetField
         *            the target field
         * @param cause
         *            the cause
         */
        public BeanFieldSetAccessibleFailureException(final Class<?> componentClass, final Field targetField, final Throwable cause) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

         *
         * @param componentClass
         *            the component class
         * @param targetMethod
         *            the target method
         * @param cause
         *            the cause
         */
        public BeanMethodSetAccessibleFailureException(final Class<?> componentClass, final Method targetMethod, final Throwable cause) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/exception/ThemeExceptionTest.java

            // Test constructor with message and cause
            String message = "Theme configuration error";
            RuntimeException cause = new RuntimeException("Config file not found");
            ThemeException exception = new ThemeException(message, cause);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
            assertEquals(cause, exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/exception/WebApiException.java

        /**
         * Constructs a WebApiException with the specified status code, message, and cause.
         *
         * @param statusCode The HTTP status code
         * @param message The detail message
         * @param cause The cause of this exception
         */
        public WebApiException(final int statusCode, final String message, final Throwable cause) {
            super(message, cause);
            this.statusCode = statusCode;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/exception/DataStoreException.java

        /**
         * Creates a new DataStoreException with the specified message and cause.
         *
         * @param message the error message
         * @param cause the underlying cause of this exception
         */
        public DataStoreException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Creates a new DataStoreException with the specified message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

        /**
         * Creates a {@link ParserConfigurationRuntimeException}.
         *
         * @param cause the underlying exception
         */
        public ParserConfigurationRuntimeException(final ParserConfigurationException cause) {
            super("ECL0053", asArray(cause), cause);
        }
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java

      public UncheckedTimeoutException(@Nullable String message) {
        super(message);
      }
    
      public UncheckedTimeoutException(@Nullable Throwable cause) {
        super(cause);
      }
    
      public UncheckedTimeoutException(@Nullable String message, @Nullable Throwable cause) {
        super(message, cause);
      }
    
      private static final long serialVersionUID = 0;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 1.4K bytes
    - Viewed (0)
Back to top