- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for NbtException (0.79 seconds)
-
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));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5K bytes - Click Count (0) -
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));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.2K bytes - Click Count (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"),
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.9K bytes - Click Count (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"));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.1K bytes - Click Count (0)