Skip to content

Commit

Permalink
Change catch clause to catch throwable siddhi exceptions
Browse files Browse the repository at this point in the history
Since siddhi is throwing runtime exceptions, catch clause should handle
throwable exceptions.
  • Loading branch information
RAVEENSR committed Mar 29, 2018
1 parent b54c4ae commit bf72987
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public void runSiddhi(String siddhiApp, String inputFile) throws InterruptedExce
//starting input feeder
inputFeeder.start();
}
} catch (Exception e) {
} catch (Throwable e) {
log.error("Internal Siddhi Error Occurred: " + e);
}

Expand Down

0 comments on commit bf72987

Please sign in to comment.