* @return
*/
protected Object handleObject( Object obj ) throws RemoteException
{
Object result = null;
ServerHandler handler = this._receiverInfo.getHandler();
try
{
result = handler.handle( obj );
}
catch ( Throwable e )
{
log.log( Level.WARNING, "Exception in ServerHandler " + this._receiverInfo.getHandler() + " occured.", e );
throw new RemoteException( "Server failed to proceed your request!", e );