All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.gdface.facelog.dborm.exception.DaoException Maven / Gradle / Ivy

There is a newer version: 2.5.1
Show newest version
// ______________________________________________________
// Generated by sql2java - https://github.com/10km/sql2java-2-6-7 (custom branch) 
// modified by guyadong from
// sql2java original version https://sourceforge.net/projects/sql2java/ 
// JDBC driver used at code generation time: com.mysql.jdbc.Driver
// template: dao.exception.java.vm
// ______________________________________________________
package net.gdface.facelog.dborm.exception;

import java.sql.SQLException;

/**
 * @author sql2java
 */
public class DaoException extends SQLException
{
    private static final long serialVersionUID = 5165438223391151142L;

    /**
     * contructor
     */
    public DaoException()
    {
        super();
    }

    /**
     * contructor
     */
    public DaoException(String message)
    {
        super(message);
    }

    /**
     * contructor
     */
    public DaoException(Throwable cause)
    {
        super(cause);
    }

    /**
     * contructor
     */
    public DaoException(String message, Throwable cause)
    {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy