gu.sql2java.exception.RuntimeDaoException 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;
/**
* wrap all DaoException threw by native code
*
* @author guyadong
*/
public class RuntimeDaoException extends RuntimeException
{
private static final long serialVersionUID = 2448402307057993837L;
/**
* constructor
*/
public RuntimeDaoException(Throwable cause)
{
super(cause);
}
}