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

com.github.ltsopensource.core.exception.DaoException Maven / Gradle / Ivy

package com.github.ltsopensource.core.exception;

/**
 * @author Robert HG ([email protected]) on 8/22/15.
 */
public class DaoException extends RuntimeException{

	private static final long serialVersionUID = -4031278211419963345L;

	public DaoException() {
        super();
    }

    public DaoException(String message) {
        super(message);
    }

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

    public DaoException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy