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

gu.sql2java.exception.DaoException Maven / Gradle / Ivy

There is a newer version: 5.3.2
Show newest version
package gu.sql2java.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