Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Treating Errors

From: amicom:sonic at: 25-Jun-2001 14:27

Rondon, Try: errors: 0 while [errors <= 5 error? try [page: read http://www.somesite.com]][ print ["Error #" errors: errors + 1 "reading site"] ] The above will try 5 times to read the site. Hope this helps! -Bo