logo

const class

sys::NotImmutableErr

sys::Obj
  sys::Err
    sys::NotImmutableErr
  1  //
  2  // Copyright (c) 2007, Brian Frank and Andy Frank
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   2 Feb 07  Brian Frank  Creation
  7  //
  8  
  9  **
 10  ** NotImmutableErr indicates using a mutable Obj where an immutable Obj is
 11  ** required.  See Obj.isImmutable for the definition of immutability.
 12  **
 13  const class NotImmutableErr : Err
 14  {
 15  
 16    **
 17    ** Construct with specified error message and optional root cause.
 18    **
 19    new make(Str msg := null, Err cause := null)
 20  
 21  }

More Info

Slots