Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SMBSignatureValidationException (0.12 sec)

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

     * Indicates that the integrity of an SMB message could not be verified.
     *
     * @author mbechler
     *
     */
    public class SMBSignatureValidationException extends SmbException {
    
        /**
         * Default constructor for SMB signature validation exception.
         */
        public SMBSignatureValidationException() {
        }
    
        /**
         * Constructs an SMB signature validation exception with message and cause.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java

            // Arrange
            String msg = "signature invalid";
            SMBSignatureValidationException ex = new SMBSignatureValidationException(msg);
    
            // Act
            String s = ex.toString();
    
            // Assert
            assertTrue(s.contains("SMBSignatureValidationException"), "toString should include class name");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.3K bytes
    - Viewed (0)
Back to top