* @param tmpBuffer
*/
public void bufferReceived(IoBuffer tmpBuffer)
{
try {
this.processIncoming(new MinaBufferReader(tmpBuffer));
} catch (FetionException e) {
this.raiseException(e);
}catch(Throwable t) {
this.raiseException(new SystemException(t, new String(tmpBuffer.array())));
}