Package org.odmg
Class ODMGException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.odmg.ODMGException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
DatabaseNotFoundException,DatabaseOpenException,ObjectNameNotFoundException,ObjectNameNotUniqueException,QueryException
This is the base class for all exceptions thrown by an ODMG implementation.
- Author:
- David Jordan (as Java Editor of the Object Data Management Group)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct anODMGExceptionobject without an error message.ODMGException(String msg) Construct anODMGExceptionobject with an error message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ODMGException
public ODMGException()Construct anODMGExceptionobject without an error message. -
ODMGException
Construct anODMGExceptionobject with an error message.- Parameters:
msg- The error message associated with this exception.
-