Quintiq file version 2.0 
 | 
#parent: #root 
 | 
Method HandleFault_Nominatim (String methodname, Key asynccallid) 
 | 
{ 
 | 
  #keys: '1[103546.0.190515014]' 
 | 
  TextBody: 
 | 
  [* 
 | 
    // boon kiat Dec-24-2013 (created) 
 | 
    debuginfo( "Utils::HandleFault" ); 
 | 
     
 | 
    //TODO - find out an error code for empty result 
 | 
    errornr := 404; 
 | 
    //TODO - construct a better error message? 
 | 
    errormessage := methodname + " failed (async call id:" + [String]asynccallid + 
 | 
                    "). Received fault - error number: " + [String]errornr + 
 | 
                    ", error message: " + "No result is found from the geocode response returned."; 
 | 
     
 | 
    this.LibOSM_OSMGISLibrary().Failed( errornr, errormessage ); 
 | 
  *] 
 | 
} 
 |