logo

const class

haven::HavenErr

sys::Obj
  sys::Err
    haven::HavenErr
//
// Copyright (c) 2008, John Sublett
// Licensed under the Academic Free License version 3.0
//
// History:
//   06 Feb 08  John Sublett  Creation
//

**
** HavenErr indicates an error from the HavenService ORM subsystem.
**
const class HavenErr : Err
{

  new make(Str msg, Err cause := null)
    : super(msg, cause)
  {
  }

}

More Info

Slots