nyla.solutions.dao.exception.JDOException Maven / Gradle / Ivy
package nyla.solutions.dao.exception;
import nyla.solutions.global.exception.SystemException;
/**
*
* JDOException represents data access exceptions
*
* @author Gregory Green
* @version 1.0
*/
public class JDOException extends SystemException
{
/**
* Comment for serialVersionUID
*/
private static final long serialVersionUID = 1L;
public JDOException()
{
super();
}// --------------------------------------------
public JDOException(String arg0, Throwable arg1)
{
super(arg0, arg1);
}// --------------------------------------------
public JDOException(String arg0)
{
super(arg0);
}// --------------------------------------------
public JDOException(Throwable arg0)
{
super(arg0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy