ClassCast Exception
I have the following error...I'm working on someone else's project (improvement) so I met a lot of bottlenecks...this is one of them:
chatObj = (ChatObj) in.readObject();
when I run the whole project, it flags a classcastexception at this line.
in case u guys are wondering what chatObj is, the previous guys declared this:
protected ChatObj chatObj;
and ChatObj is actually a seperate java file where it implementsSerializable
Any help is appreciated...

