logo

const class

sys::IndexErr

sys::Obj
  sys::Err
    sys::IndexErr
  1  //
  2  // Copyright (c) 2006, Brian Frank and Andy Frank
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   11 Jan 06  Brian Frank  Creation
  7  //
  8  
  9  **
 10  ** IndexErr indicates an attempt to access an invalid index in a List.
 11  **
 12  const class IndexErr : Err
 13  {
 14  
 15    **
 16    ** Construct with specified error message and optional root cause.
 17    **
 18    new make(Str msg := null, Err cause := null)
 19  
 20  }

More Info

Slots