Fixed a typo in an exception message.

This commit is contained in:
Paul Speed 2015-12-26 17:42:15 -05:00
parent 72423b682e
commit ab0628c070

View File

@ -181,7 +181,7 @@ public class MessageProtocol
Message m = (Message)obj; Message m = (Message)obj;
messages.add(m); messages.add(m);
} catch( IOException e ) { } catch( IOException e ) {
throw new RuntimeException( "Error deserializing object, clas ID:" + buffer.getShort(0), e ); throw new RuntimeException( "Error deserializing object, class ID:" + buffer.getShort(0), e );
} }
} }
} }