It appears that clientSocket is your only externally visible reference. From another thread, call clientSocket.close()
That will force the ObjectInputStream to throw the IOException on the readObject() call. That should trigger your catch block and get you out of the loop.
Re-reading your question, you say that readObject doesn't throw InterruptedException. You're correct in that point: I'm looking at the source for readObject right now and it neither throws nor does it explicitly hide the InterruptedException.
You should always be able to trigger that final catch (Exception ex) block (AKA exception eater) by calling objectReadingThread.interrupt() from another thread (or whatever you name your reading thread). Quoting the Javadoc:
If this thread is blocked in an invocation of the wait(), wait(long),
or wait(long, int) methods of the Object class, or of the join(),
join(long), join(long, int), sleep(long), or sleep(long, int), methods
of this class, then its interrupt status will be cleared and it will
receive an InterruptedException.
If this thread is blocked in an I/O operation upon an interruptible
channel then the channel will be closed, the thread's interrupt status
will be set, and the thread will receive a ClosedByInterruptException.
If this thread is blocked in a Selector then the thread's interrupt
status will be set and it will return immediately from the selection
operation, possibly with a non-zero value, just as if the selector's
wakeup method were invoked.
If none of the previous conditions hold then this thread's interrupt
status will be set.
If that isn't working, I would investigate that "do something with object" block and try to find the exception-eater that is consuming your interrupt and ignoring it.