Skip to content

Commit 8bdedde

Browse files
committed
Fix: wrong error message
1 parent 98104cc commit 8bdedde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

traindb-core/src/main/java/traindb/engine/TrainDBFileModelRunner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public String listHyperparameters(String className, String uri) throws Exception
142142
process.waitFor();
143143

144144
if (process.exitValue() != 0) {
145-
throw new TrainDBException("failed to train model");
145+
throw new TrainDBException("failed to list hyperparameters");
146146
}
147147

148148
String hyperparamsInfo =

0 commit comments

Comments
 (0)