Update gclc-swt and -socket for gclc-1.2.3

This commit is contained in:
2016-06-12 16:11:44 -04:00
parent c151107207
commit 763b7361ec
4 changed files with 7 additions and 5 deletions

View File

@@ -72,7 +72,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
try {
manager.println("Test command ran fine");
} catch (IOException e) {
throw new CommandRunException("manager closed", e);
throw new CommandRunException("manager closed", e,
this);
}
}
});
@@ -89,7 +90,8 @@ public class ConsoleTestApplication extends ConsoleApplication {
Thread.sleep(2000);
manager.println("Test command ran fine");
} catch (IOException | InterruptedException e) {
throw new CommandRunException("manager closed", e);
throw new CommandRunException("manager closed", e,
this);
}
}
});