- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for SMBProtocolDowngradeException (0.31 seconds)
-
src/main/java/jcifs/smb/SMBProtocolDowngradeException.java
* * @author mbechler * */ public class SMBProtocolDowngradeException extends CIFSException { /** * Serial version UID for serialization compatibility. */ private static final long serialVersionUID = 1913365058349456689L; /** * Creates a new SMBProtocolDowngradeException with no message. */ public SMBProtocolDowngradeException() { } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 2.1K bytes - Click Count (0) -
src/test/java/jcifs/smb/SMBProtocolDowngradeExceptionTest.java
if (message == null) { assertEquals(SMBProtocolDowngradeException.class.getName(), ex.toString()); } else if (message.isEmpty()) { // Throwable.toString prints class + ": " (with space) even for empty string assertEquals(SMBProtocolDowngradeException.class.getName() + ": ", ex.toString()); } else { assertEquals(SMBProtocolDowngradeException.class.getName() + ": " + message, ex.toString());
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.4K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
Smb2IoctlResponse resp; try { resp = send(req, RequestParam.NO_RETRY); } catch (final SMBSignatureValidationException e) { throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e); } catch (final SmbException e) { if (log.isDebugEnabled()) {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 30K bytes - Click Count (0)