mirror of https://github.com/buggins/dlangide.git
exception handling
This commit is contained in:
parent
84ffe98ba0
commit
052f9f9bfe
|
@ -329,6 +329,8 @@ class ExternalProcess {
|
||||||
Log.e("Cannot run program ", _program, " ", e);
|
Log.e("Cannot run program ", _program, " ", e);
|
||||||
} catch (std.stdio.StdioException e) {
|
} catch (std.stdio.StdioException e) {
|
||||||
Log.e("Cannot redirect streams for program ", _program, " ", 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;
|
return _state;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue