Inheritance: java.lang.Exception
 public virtual void ioException(IOException ioe)
 {
   if (ioe is EOFException)
     this.gotoState(ServerConnectionState.__\u003C\u003ECLIENT_DISCONNECTED);
   else
     this.gotoState((ServerConnectionState) new ServerConnectionState.Error((Exception) ioe));
   this.adapterListener.close(this, false);
 }
Ejemplo n.º 2
0
		protected abstract SystemException CreateException(IOException e);
 public RuntimeException(string message, IOException e)
     : base(message)
 {
     this.e = e;
 }
 public virtual void ioException(IOException ioe)
 {
   if (this.connectionState == ClientConnectionState.__\u003C\u003EDISCONNECTED_FROM_SERVER)
     return;
   this.reconnect();
 }