ai.libs.jaicore.basic.TooManyConnectionRetriesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jaicore-basic Show documentation
Show all versions of jaicore-basic Show documentation
Fundamental utils required by many other starlibs projects.
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