edu.washington.NVisF.dataIO
Class OpenConnectionException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--edu.washington.NVisF.dataIO.DataIOException
                          |
                          +--edu.washington.NVisF.dataIO.OpenConnectionException
All Implemented Interfaces:
java.io.Serializable

public class OpenConnectionException
extends DataIOException

An OpenConnectionException is thrown when an attempt is made to initialize a new connection when one already exists. The old connection should first be closed with closeConnection() before attempting to to open a new one.

See Also:
Serialized Form

Constructor Summary
OpenConnectionException()
           
OpenConnectionException(java.lang.String s)
          Initializes a new OpenConnectionException with the given message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OpenConnectionException

public OpenConnectionException()

OpenConnectionException

public OpenConnectionException(java.lang.String s)
Initializes a new OpenConnectionException with the given message.