Files
harbour-core/harbour/tests/working/syserror.prg
1999-07-10 14:21:56 +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