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

com.guicedee.guicedpersistence.db.exceptions.InvalidConnectionInfoException Maven / Gradle / Ivy

Go to download

A complete JPA 2.1 implementation for Standalone or EE Implementation. Enables Multiple Persistence units with full JTA Support using BTM. Perfect for Guice implementations, test suites, and Guice enabled Web Applications or EAR Projects. Requires JDK 8

There is a newer version: 62
Show newest version
package com.guicedee.guicedpersistence.db.exceptions;

/**
 * Generic exception to mark that no connection information was supplied
 */
public class InvalidConnectionInfoException
		extends RuntimeException
{
	/**
	 * Generic exception to mark that no connection information was supplied
	 */
	public InvalidConnectionInfoException()
	{
		//Nothing needed
	}

	/**
	 * Generic exception to mark that no connection information was supplied
	 *
	 * @param message
	 */
	public InvalidConnectionInfoException(String message)
	{
		super(message);
	}

	/**
	 * Generic exception to mark that no connection information was supplied
	 *
	 * @param message
	 * @param cause
	 */
	public InvalidConnectionInfoException(String message, Throwable cause)
	{
		super(message, cause);
	}

	/**
	 * Generic exception to mark that no connection information was supplied
	 *
	 * @param cause
	 */
	public InvalidConnectionInfoException(Throwable cause)
	{
		super(cause);
	}

	/**
	 * Generic exception to mark that no connection information was supplied
	 *
	 * @param message
	 * @param cause
	 * @param enableSuppression
	 * @param writableStackTrace
	 */
	public InvalidConnectionInfoException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
	{
		super(message, cause, enableSuppression, writableStackTrace);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy