
org.odmg.ODMGException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of db-ojb Show documentation
Show all versions of db-ojb Show documentation
ObJectRelationalBridge (OJB) is an Object/Relational mapping tool that
allows transparent persistence for Java Objects against relational
databases.
The newest version!
package org.odmg;
/**
* 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)
* @version ODMG 3.0
*/
public class ODMGException extends Exception
{
/**
* Construct an ODMGException
object without an error message.
*/
public ODMGException()
{
super();
}
/**
* Construct an ODMGException
object with an error message.
* @param msg The error message associated with this exception.
*/
public ODMGException(String msg)
{
super(msg);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy