Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,571 for cause (0.03 sec)

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

            // Test constructor with message and Exception cause
            String message = "SSO token validation error";
            Exception cause = new RuntimeException("Invalid token format");
            SsoProcessException exception = new SsoProcessException(message, cause);
    
            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
    - 9.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/RobotsTxtException.java

     *
     */
    public class RobotsTxtException extends CrawlerSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new RobotsTxtException with the specified detail message and cause.
         * @param message the detail message
         * @param cause the cause of the exception
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/QueryParseExceptionTest.java

        public void test_getCause() {
            // Test that the cause is properly set and retrievable
            ParseException parseException = new ParseException("Query parsing failed");
            QueryParseException queryParseException = new QueryParseException(parseException);
    
            Throwable cause = queryParseException.getCause();
            assertNotNull(cause);
            assertTrue(cause instanceof ParseException);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exception/SsoMessageException.java

         *
         * @param messageCode The message code for internationalized error display
         * @param message The detailed error message
         * @param cause The underlying cause of this exception
         */
        public SsoMessageException(final VaMessenger<FessMessages> messageCode, final String message, final Throwable cause) {
            super(message, cause);
            this.messageCode = messageCode;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            // Test constructor with message and cause
            String message = "LDAP operation failed with error";
            Exception cause = new RuntimeException("Connection timeout");
            LdapOperationException exception = new LdapOperationException(message, cause);
    
            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.1K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/repository/VersionNotFoundException.java

        private InvalidVersionSpecificationException cause;
    
        public VersionNotFoundException(
                String projectId, Dependency dependency, File pomFile, InvalidVersionSpecificationException cause) {
            super(
                    projectId + ", " + formatLocationInPom(dependency) + " " + dependency.getVersion() + ", pom file "
                            + pomFile,
                    cause);
    
            this.projectId = projectId;
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/util/transport/TransportException.java

         * Constructs a new TransportException with the specified cause.
         * @param rootCause the cause of this exception
         */
        public TransportException(final Throwable rootCause) {
            super(rootCause);
        }
    
        /**
         * Constructs a new TransportException with the specified detail message and cause.
         * @param msg the detail message
         * @param rootCause the cause of this exception
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/ParseRuntimeException.java

        private static final long serialVersionUID = -5237329676597387063L;
    
        /**
         * Creates a {@link ParseRuntimeException}.
         *
         * @param cause the underlying exception
         */
        public ParseRuntimeException(final ParseException cause) {
            super("ECL0050", asArray(cause), cause);
        }
    
        /**
         * Creates a {@link ParseRuntimeException}.
         *
         * @param s the string that could not be parsed
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  9. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/exception/OpenSearchAccessException.java

        }
    
        /**
         * Creates a new instance of OpenSearchAccessException.
         *
         * @param message the detail message
         * @param cause the cause
         */
        public OpenSearchAccessException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top