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

com.jpattern.orm.exception.sql.OrmSqlException Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.exception.sql;

import com.jpattern.orm.exception.OrmException;

/**
 * 
 * Generic wrapper for a {@link java.sql.SQLException}
 * 
 * @author cinafr
 *
 */
public class OrmSqlException extends OrmException {

	private static final long serialVersionUID = 1L;

	public OrmSqlException(final Exception e) {
		super(e);
	}

	public OrmSqlException(final String message, final Exception e) {
		super(message, e);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy