Closing of socket application throw only an IOException, no generic one

Signed-off-by: Emmanuel Bigeon <emmanuel@bigeon.fr>
This commit is contained in:
Emmanuel Bigeon 2016-12-04 09:44:29 -05:00
parent 90579d79a9
commit 7d41a9f4c6

View File

@ -367,7 +367,7 @@ public class SocketConsoleApplicationShell implements Runnable, AutoCloseable {
/* (non-Javadoc)
* @see java.lang.AutoCloseable#close() */
@Override
public void close() throws Exception {
public void close() throws IOException {
consoleManager.close();
}
}