Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,146 for mymessage (0.06 sec)

  1. src/main/java/jcifs/smb/SmbOperationException.java

         * @param message the error message
         */
        public SmbOperationException(ErrorCode errorCode, String message) {
            this(errorCode, message, null, RetryPolicy.DEFAULT, Collections.emptyMap());
        }
    
        /**
         * Create a new SmbOperationException with cause
         *
         * @param errorCode the error code
         * @param message the error message
         * @param cause the underlying cause
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/ntlmssp/Type1Message.java

        }
    
        /**
         * Creates a Type-1 message using default values from the current
         * environment.
         */
        public Type1Message() {
            this(getDefaultFlags(), getDefaultDomain(), getDefaultWorkstation());
        }
    
        /**
         * Creates a Type-1 message with the specified parameters.
         *
         * @param flags The flags to apply to this message.
         * @param suppliedDomain The supplied authentication domain.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/dcerpc/DcerpcExceptionTest.java

            assertEquals(message, exception.getMessage(), "Message should match the input.");
            assertNull(exception.getCause(), "Cause should be null for message-only constructor.");
        }
    
        /**
         * Test constructor DcerpcException(String msg, Throwable rootCause).
         */
        @Test
        void testConstructorWithMessageAndCause() {
            String message = "Test message with cause.";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            // Test with empty message string
            int statusCode = 404;
            String message = "";
    
            WebApiException exception = new WebApiException(statusCode, message);
    
            assertEquals(statusCode, exception.getStatusCode());
            assertEquals(message, exception.getMessage());
        }
    
        public void test_message_nullString() {
            // Test with null message string
            int statusCode = 500;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            // Test constructor with message only
            String message = "Thumbnail generation failed";
            ThumbnailGenerationException exception = new ThumbnailGenerationException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithMessageAndCause() {
            // Test constructor with message and cause
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            int paddedLength = ((message.length + blockSize - 1) / blockSize) * blockSize;
            byte[] paddedMessage = new byte[Math.max(paddedLength, message.length)];
            System.arraycopy(message, 0, paddedMessage, 0, message.length);
    
            // Encrypt with constant timing
            byte[] result = cipher.doFinal(paddedMessage, 0, message.length);
    
            // Clear padded data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java

            // Test constructor with message only
            String message = "Script engine error occurred";
            ScriptEngineException exception = new ScriptEngineException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and cause
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java

        }
    
        public void test_constructor_withSpecialCharactersInMessage() {
            // Test constructor with special characters in message
            final String message = "Job failed with special chars: \n\t\r\"'<>&";
            final JobProcessingException exception = new JobProcessingException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructorWithMessageAndNullCause() {
            // Test constructor with message and null cause
            String message = "Query processing error";
    
            SearchQueryException exception = new SearchQueryException(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
    - 9.7K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        public void test_constructor_withMessageAndNullCause() {
            // Test constructor with message and null cause
            String message = "LDAP error occurred";
            LdapOperationException exception = new LdapOperationException(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
    - 8.1K bytes
    - Viewed (0)
Back to top