How to use the call function from verror

Find comprehensive JavaScript verror.call code examples handpicked from public code repositorys.

3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
var BCO = BufferCursor.BufferCursorOverflow = function(length, pos, size) {
  this.kind = 'BufferCursorOverflow';
  this.length = length;
  this.position = pos;
  this.size = size;
  VError.call(this,
              'BufferCursorOverflow: length %d, position %d, size %d',
              length,
              pos,
              size);
fork icon0
star icon0
watch icon1

+ 2 other calls in file