edu.washington.NVisF.dataIO
Class NoConnectionException

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

public class NoConnectionException
extends DataIOException

A NoConnectionException is thrown when an attempt is made to access data, but there is no valid connection to the data source. This could mean (1) the connection was never opened with initConnection(); (2) the connection was closed with closeConnection() and not reopened; or (3) a behind-the-scenes error broke the connection.

See Also:
Serialized Form

Constructor Summary
NoConnectionException()
           
NoConnectionException(java.lang.String s)
          Initializes a new NoConnectionException 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

NoConnectionException

public NoConnectionException()

NoConnectionException

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