logo

const class

build::FatalBuildErr

sys::Obj
  sys::Err
    build::FatalBuildErr
  1  //
  2  // Copyright (c) 2006, Brian Frank and Andy Frank
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   4 Nov 06  Brian Frank  Creation
  7  //
  8  
  9  **
 10  ** FatalBuildErr is thrown to immediately terminate
 11  ** the current build script.
 12  **
 13  const class FatalBuildErr : Err
 14  {
 15    new make(Str msg := null, Err cause := null)
 16      : super(msg, cause)
 17    {
 18    }
 19  }

More Info

Slots