@@ -198,11 +198,11 @@ private void launchModelLoadOnProcess() throws IOException, InterruptedException
198
198
if (task .status == TaskStatus .CANCELED )
199
199
throw new RuntimeException ();
200
200
else if (task .status == TaskStatus .FAILED )
201
- throw new RuntimeException ();
201
+ throw new RuntimeException (task . error );
202
202
else if (task .status == TaskStatus .CRASHED ) {
203
203
this .runner .close ();
204
204
runner = null ;
205
- throw new RuntimeException ();
205
+ throw new RuntimeException (task . error );
206
206
}
207
207
}
208
208
@@ -323,11 +323,11 @@ void runInterprocessing(List<Tensor<T>> inputTensors, List<Tensor<R>> outputTens
323
323
if (task .status == TaskStatus .CANCELED )
324
324
throw new RuntimeException ();
325
325
else if (task .status == TaskStatus .FAILED )
326
- throw new RuntimeException ();
326
+ throw new RuntimeException (task . error );
327
327
else if (task .status == TaskStatus .CRASHED ) {
328
328
this .runner .close ();
329
329
runner = null ;
330
- throw new RuntimeException ();
330
+ throw new RuntimeException (task . error );
331
331
}
332
332
for (int i = 0 ; i < outputTensors .size (); i ++) {
333
333
String name = (String ) Types .decode (encOuts .get (i )).get (MEM_NAME_KEY );
@@ -451,11 +451,11 @@ public void closeModel() {
451
451
if (task .status == TaskStatus .CANCELED )
452
452
throw new RuntimeException ();
453
453
else if (task .status == TaskStatus .FAILED )
454
- throw new RuntimeException ();
454
+ throw new RuntimeException (task . error );
455
455
else if (task .status == TaskStatus .CRASHED ) {
456
456
this .runner .close ();
457
457
runner = null ;
458
- throw new RuntimeException ();
458
+ throw new RuntimeException (task . error );
459
459
}
460
460
this .runner .close ();
461
461
this .runner = null ;
0 commit comments