RosettaCodeData/Task/Exceptions/Gambas/exceptions.gambas

31 lines
306 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
Public Sub Main()
Dim iInteger As Integer
MakeError
DivError
iInteger = "2.54"
Catch
Print Error.Text
End
'______________________
Public Sub DivError()
Print 10 / 0
Catch
Print Error.Text
End
'______________________
Public Sub MakeError()
Error.Raise("My Error")
Catch
Print Error.Text
End