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 f503362 commit 12e2a6cCopy full SHA for 12e2a6c
src/com/xxdb/DBConnection.java
@@ -224,7 +224,7 @@ private void validateConfig() {
224
throw new IllegalArgumentException("The param 'hostName' cannot be null or empty.");
225
226
if (config.port <= 0 || config.port > 65535)
227
- throw new IllegalArgumentException("The param 'port' cannot less than or equanl to 0, and also cannot rather than 65535.");
+ throw new IllegalArgumentException("The param 'port' cannot less than or equal to 0, and also cannot greater than 65535.");
228
229
if (config.connectTimeout < 0 || config.readTimeout < 0)
230
throw new IllegalArgumentException("The param connectTimeout or readTimeout cannot less than zero.");
0 commit comments