We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f345dce commit 89acedcCopy full SHA for 89acedc
marklogic-client-api/src/main/java/com/marklogic/client/impl/BaseProxy.java
@@ -66,7 +66,7 @@ public BaseProxy(DatabaseClient db, String endpointDir) {
66
if (db == null) {
67
throw new IllegalArgumentException("Cannot connect with null database client");
68
} else if (db.getDatabase() != null) {
69
- throw new IllegalArgumentException("Client must use the default database instead of: "+db.getDatabase());
+ throw new IllegalArgumentException("Client cannot specify a database - specified: "+db.getDatabase());
70
}
71
if (endpointDir == null || endpointDir.length() == 0) {
72
throw new IllegalArgumentException("Cannot make requests with null or empty endpoint directory");
0 commit comments