Class DataJetException

java.lang.Object
java.lang.Throwable
java.lang.Exception
anderix.datajets.DataJetException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConnectionException

public class DataJetException extends Exception
Thrown when a DataJet attempts to access a method before it has been initialized. To completely initialize an object that inherits from DataJet, you must call all of the following static methods:
  • setConnection
  • setTable
  • setFieldList
When calling setConnection, ensure that the driver and connection string are valid, or supply a valid java.sql.Connection object.

To completely initialize an object that inherits from Jet, you may call the methods exposed by DataJet (above) or call one of Jet's jetSet methods.

See Also:
  • Constructor Details

    • DataJetException

      public DataJetException(String msg)
      Class constructor specifying the message to add.
      Parameters:
      msg - the message to add