gu.sql2java.exception.DataRetrievalException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sql2java-base Show documentation
Show all versions of sql2java-base Show documentation
sql2java common class package
package gu.sql2java.exception;
/**
* @author sql2java
*/
public class DataRetrievalException extends DataAccessException
{
private static final long serialVersionUID = -1628427750056759044L;
/**
* contructor
*/
public DataRetrievalException()
{
super();
}
/**
* contructor
*/
public DataRetrievalException(String message)
{
super(message);
}
/**
* contructor
*/
public DataRetrievalException(Throwable cause)
{
super(cause);
}
/**
* contructor
*/
public DataRetrievalException(String message, Throwable cause)
{
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy