Files
harbour-core/harbour/tests/working/errorsys.prg
Antonio Linares 974bc2fbc2 make files
1999-05-05 05:45:23 +00:00

15 lines
280 B
Plaintext

// Testing the Harbour related error system functions
function Main()
local oError := ErrorNew()
QOut( oError:ClassName() ) // Be aware this will print ERROR
oError:Description = "Its description"
QOut( oError:Description )
QOut( Len( oError ) )
return nil