logo

const class

inet::UnknownHostErr

sys::Obj
  sys::Err
    sys::IOErr
      inet::UnknownHostErr
  1  //
  2  // Copyright (c) 2007, Brian Frank and Andy Frank
  3  // Licensed under the Academic Free License version 3.0
  4  //
  5  // History:
  6  //   9 Feb 07  Brian Frank  Creation
  7  //
  8  
  9  **
 10  ** UnknownHostErr indicates a failure to resolve a hostname to an IP address.
 11  **
 12  const class UnknownHostErr : IOErr
 13  {
 14  
 15    new make(Str msg, Err cause := null)
 16      : super(msg, cause)
 17    {
 18    }
 19  
 20  }

More Info

Slots