forked from External/mage
compilation error fix.
This commit is contained in:
parent
6defeeed1f
commit
e50de69420
2 changed files with 8 additions and 1 deletions
|
|
@ -202,7 +202,11 @@ public class Session {
|
|||
|
||||
private void runEmbeddedMageServer() {
|
||||
if (embeddedMageServerAction != null) {
|
||||
embeddedMageServerAction.execute();
|
||||
try {
|
||||
embeddedMageServerAction.execute();
|
||||
} catch (MageException e) {
|
||||
logger.error(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue