- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for getException (0.48 sec)
-
src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java
} @Test @DisplayName("Test Response interface methods - getException") void testGetException() { // Given Exception expectedException = new Exception("Test exception"); when(response.getException()).thenReturn(expectedException); // When Exception actualException = response.getException(); // Then assertEquals(expectedException, actualException);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
this.asyncHandled = asyncHandled; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#getException() */ @Override public Exception getException() { return this.exception; } /** * * @return error status code */ @Override public final int getErrorCode() {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Response.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
} catch (PrivilegedActionException e) { if (e.getException() instanceof SmbException) { throw (SmbException) e.getException(); } throw new SmbException("Unexpected exception during context initialization", e); } }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 68.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
return expiration; } @Override public void setExpiration(Long exp) { this.expiration = exp; } @Override public Exception getException() { return exception; } @Override public void exception(Exception e) { this.exception = e; } // Methods from Message interfaceRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
void testExceptionState() { Exception testException = new RuntimeException("Test error"); assertNull(testBlock.getException()); testBlock.exception(testException); assertEquals(testException, testBlock.getException()); } @Test @DisplayName("Test error state") void testErrorState() { assertFalse(testBlock.isError());
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
} @Override public void exception(Exception e) { this.exception = e; } @Override public Exception getException() { return this.exception; } @Override public void setExpiration(Long expiration) { this.expiration = expiration; } @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
*/ public NetbiosAddress[] getAnswer() { return this.ans; } /** * @return the uhe */ public UnknownHostException getException() { return this.uhe; } } NetbiosAddress[] lookupServerOrWorkgroup(final String name, final InetAddress svr) throws UnknownHostException { final Sem sem = new Sem(2);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
public boolean isVerifyFailed() { return this.verifyFailed; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#getException() */ @Override public Exception getException() { return this.exception; } /** * {@inheritDoc} * * @see jcifs.util.transport.Response#isError() */ @Override
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Transport.java
} if (curResp.isError()) { throw new TransportException(this.name + " error reading response to " + curReq, curResp.getException()); } if (isDisconnected() && this.state != 5) { throw new TransportException(Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 27.8K bytes - Viewed (0)