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

com.bld.commons.exception.JpaServiceException Maven / Gradle / Ivy

The newest version!
/**
 * @author Francesco Baldi
 * @mail [email protected]
 * @class bld.commons.exception.JpaServiceException.java
 */
package com.bld.commons.exception;

/**
 * The Class JpaServiceException.
 */
@SuppressWarnings("serial")
public class JpaServiceException extends RuntimeException{

	/**
	 * Instantiates a new jpa service exception.
	 *
	 * @param message the message
	 */
	public JpaServiceException(String message) {
		super(message);
	}

	/**
	 * Instantiates a new jpa service exception.
	 *
	 * @param e the e
	 */
	public JpaServiceException(Throwable e) {
		super(e);
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy