updated exception

This commit is contained in:
xjoao 2020-05-29 22:29:14 -04:00
parent 17299bf160
commit f45844ef65

View File

@ -42,7 +42,7 @@ public class ServerMessage {
try { try {
this.stream.writeInt(0); this.stream.writeInt(0);
this.stream.writeShort(id); this.stream.writeShort(id);
} catch (Exception e) { } catch (IOException e) {
throw new ServerMessageException(e); throw new ServerMessageException(e);
} }