import java.sql.*
try {
String db = "jdbc:postgresql:postgres";
Connection conn = DriverManager.getConnection(db, "postgres", "postgres");
}
catch(Exception ex) {
System.out.println("DB exception: " + ex);
}
java.sql.SQLException: No suitable driver found for jdbc:postgresql:postgres