Getting started Community Training Tutorials Documentation APIs, AI & Tools
@Override
public Connection connect() throws ConnectionException {
Connection connection;
try {
connection = new Connection();
} catch (Exception e) {
throw new ConnectionException("Error occurred trying to connect.", e);
}
return connection;
}



