What's the difference between a BufferOverflowException and BufferUnderflowException?
Created May 8, 2012
John Zukowski A BufferOverflowException happens when the target buffer is full and you try to put something into it. A BufferUnderflowException happens when the source buffer is empty and you try to get something from it.