001package gu.sql2java.exception;
002
003/**
004 * wrap all DaoException threw by native code
005 *
006 * @author guyadong
007 */
008public class RuntimeDaoException extends RuntimeException
009{
010    private static final long serialVersionUID = 2448402307057993837L;
011
012    /**
013     * constructor
014     */
015    public RuntimeDaoException(Throwable cause)
016    {
017        super(cause);
018    }
019}