1 jls.loader.provide('jls.lang.BufferUnderflowException');
  2 
  3 /**
  4  * @augments jls.lang.Exception
  5  * @class Thrown to indicate that the target buffer's limit is reached.
  6  */
  7 jls.lang.BufferUnderflowException = jls.lang.Class.create(jls.lang.Exception, /** @lends jls.lang.BufferUnderflowException.prototype */
  8 {
  9     initialize : function($super, message, cause) {
 10         $super(message, cause);
 11     }
 12 });
 13