Examples of DisconnectException


Examples of org.apache.derby.client.am.DisconnectException

        popCollectionStack();
        checkRequiredObjects(svrcodReceived, rdbnamReceived);

        netAgent_.setSvrcod(svrcod);
        agent_.accumulateChainBreakingReadExceptionAndThrow(
            new DisconnectException(agent_,
                new ClientMessageId(SQLState.DRDA_CONNECTION_TERMINATED),
                msgutil_.getTextMessage(MessageId.CONN_DRDA_RDBNACRM)));           
    }
View Full Code Here

Examples of org.serviceconnector.net.connection.DisconnectException

      if (ConnectionLogger.isEnabled()) {
        InetSocketAddress remoteSocketAddress = (InetSocketAddress) ctx.getChannel().getRemoteAddress();
        ConnectionLogger.logDisconnectByRemoteHost(this.getClass().getSimpleName(), remoteSocketAddress.getHostName(),
            remoteSocketAddress.getPort());
      }
      DisconnectException ex = new DisconnectException("Connection disconnect, reply is outstanding. Operation stopped.");
      try {
        NettyHttpRequesterResponseHandler.this.scmpCallback.receive(ex);
      } catch (Throwable throwable) {
        LOGGER.error("receive exception", throwable);
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.