de.julielab.xmlData.dataBase.util.UnobtainableConnectionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of costosys Show documentation
Show all versions of costosys Show documentation
A utility for managing documents stored in a PostgreSQL database. The documents are imported into a
PostgreSQL DB as full texts with the goal to be able to retrieve the documents by their PubMedID efficiently.
For more sophisticated tasks, a user configuration file can be delivered which can take control of the table
schema to use, the PostgreSQL schema to use and the actual database server to connect to as well as the concrete
database.
package de.julielab.xmlData.dataBase.util;
public class UnobtainableConnectionException extends RuntimeException {
public UnobtainableConnectionException() {
}
public UnobtainableConnectionException(String message) {
super(message);
}
public UnobtainableConnectionException(String message, Throwable cause) {
super(message, cause);
}
public UnobtainableConnectionException(Throwable cause) {
super(cause);
}
public UnobtainableConnectionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}