exception handling

This commit is contained in:
Vadim Lopatin 2016-06-28 15:24:18 +03:00
parent 84ffe98ba0
commit 052f9f9bfe
1 changed files with 2 additions and 0 deletions

View File

@ -329,6 +329,8 @@ class ExternalProcess {
Log.e("Cannot run program ", _program, " ", e);
} catch (std.stdio.StdioException e) {
Log.e("Cannot redirect streams for program ", _program, " ", e);
} catch (Throwable e) {
Log.e("Exception while trying to run program ", _program, " ", e);
}
return _state;
}