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

ai.libs.jaicore.basic.TooManyConnectionRetriesException Maven / Gradle / Ivy

There is a newer version: 0.2.7
Show newest version
package ai.libs.jaicore.basic;

/**
 * Exception may be thrown if too many retries happened when trying to connect to the database via the SQLAdapter.
 *
 * @author mwever
 *
 */
public class TooManyConnectionRetriesException extends RuntimeException {

	public TooManyConnectionRetriesException(final String msg) {
		super(msg);
	}

	public TooManyConnectionRetriesException(final String msg, final Throwable cause) {
		super(msg, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy