- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for NbtException (0.23 sec)
-
src/main/java/jcifs/netbios/NbtException.java
} return result.toString(); } /** * Constructs an NbtException with the specified error class and code. * * @param errorClass the NetBIOS error class * @param errorCode the NetBIOS error code */ public NbtException(final int errorClass, final int errorCode) { super(getErrorString(errorClass, errorCode));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtException.java
} return result.toString(); } /** * Constructs an NbtException with the specified error class and code. * * @param errorClass the NetBIOS error class * @param errorCode the NetBIOS error code */ public NbtException(final int errorClass, final int errorCode) { super(getErrorString(errorClass, errorCode));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtExceptionTest.java
Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.IMP_ERR, "ERR_NAM_SRVC/Unknown error code: 4"), Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.RFS_ERR, "ERR_NAM_SRVC/Unknown error code: 5"), Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.ACT_ERR, "ERR_NAM_SRVC/Unknown error code: 6"), Arguments.of(NbtException.ERR_NAM_SRVC, NbtException.CFT_ERR, "ERR_NAM_SRVC/Unknown error code: 7"),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/NbtExceptionTest.java
} @Test @DisplayName("toString includes class, code and error string") void testToString() { NbtException e = new NbtException(NbtException.ERR_SSN_SRVC, NbtException.NO_RESOURCES); String str = e.toString(); assertTrue(str.contains("errorClass=2"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0)