Package anderix.datajets
Class DataJetException
java.lang.Object
java.lang.Throwable
java.lang.Exception
anderix.datajets.DataJetException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConnectionException
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
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 Summary
ConstructorDescriptionDataJetException
(String msg) Class constructor specifying the message to add. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DataJetException
Class constructor specifying the message to add.- Parameters:
msg
- the message to add
-