Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 578 for mymessage (0.06 sec)

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

            super(message, cause);
            this.messageCode = messageCode;
        }
    
        /**
         * Creates a new InvalidQueryException with message code and message.
         *
         * @param messageCode the message code for localized error messages
         * @param message the detailed error message
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

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

         *
         * @param message the detail message describing the exception
         * @param cause the cause of this exception
         */
        public FessSystemException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
         * Constructs a new FessSystemException with the specified detail message.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt

      @JvmName("-deprecated_message")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "message"),
        level = DeprecationLevel.ERROR,
      )
      fun message(): String = message
    
      @JvmName("-deprecated_handshake")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "handshake"),
        level = DeprecationLevel.ERROR,
      )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 14:39:28 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exception/GsaConfigException.java

        /**
         * Constructs a new GSA configuration exception with the specified detail message and cause.
         *
         * @param message the detail message describing the configuration error
         * @param cause the cause of the exception
         */
        public GsaConfigException(final String message, final Throwable cause) {
            super(message, cause);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/ClUnsupportedOperationException.java

         *
         * @param message the message
         */
        public ClUnsupportedOperationException(final String message) {
            super(message);
        }
    
        /**
         * Creates a {@link ClUnsupportedOperationException}.
         *
         * @param message the message
         * @param cause the underlying exception
         */
        public ClUnsupportedOperationException(final String message, final Throwable 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)
  7. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: {item} must be greater than {value}. */
        public static final String CONSTRAINTS_DecimalMin_MESSAGE = "{constraints.DecimalMin.message}";
    
        /** The key of the message: {item} must be a number. (expected: <number>.<number>) */
        public static final String CONSTRAINTS_Digits_MESSAGE = "{constraints.Digits.message}";
    
        /** The key of the message: {item} must be a future value. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 119.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/log/Logger.java

         *
         * @param message
         *            Message
         */
        public void warn(final Object message) {
            log.warn(message.toString());
        }
    
        /**
         * Outputs ERROR information.
         *
         * @param message
         *            Message
         * @param throwable
         *            Exception
         */
        public void error(final Object message, final Throwable throwable) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            // Test with URL, message, and exception (abort defaults to false)
            String url = "http://example.com/test";
            String message = "Test error message";
            Exception cause = new RuntimeException("Root cause");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, cause);
    
            assertEquals(url, exception.getUrl());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/JsseDebugLogging.kt

              message.startsWith("System property ") -> Type.Setup
              message.startsWith("Reload ") -> Type.Setup
              message == "No session to resume." -> Type.Handshake
              message.startsWith("Consuming ") -> Type.Handshake
              message.startsWith("Produced ") -> Type.Handshake
              message.startsWith("Negotiated ") -> Type.Handshake
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top