1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-09 15:10:18 +00:00
QB64-PE/tests/compile_tests/http/invalid_url.bas

18 lines
338 B
QBasic
Raw Normal View History

$Unstable:Http
$Console:Only
ON ERROR GOTO errorhand
' This domain isn't valid at all, an error is triggered
h& = _OpenClient("HTTP:NotARealURL")
Print h&
' Only HTTP URLs are supported, an error is triggered
h& = _OpenClient("HTTP:ftp://example.com")
Print h&
System
errorhand:
PRINT "Error:"; ERR; ", Line:"; _ERRORLINE
RESUME NEXT