RosettaCodeData/Task/Exceptions/PureBasic/exceptions.purebasic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

9 lines
323 B
Text

Procedure ErrorHandler()
MessageRequester("Exception test", "The following error happened: " + ErrorMessage())
EndProcedure
MessageRequester("Exception test", "Test start")
OnErrorCall(@ErrorHandler())
RaiseError(#PB_OnError_InvalidMemory) ;a custom error# can also be used here depending on the OS being compiled for