I find this url. I can use
verror -all
in console. But I try to find documentation about all errors.
You can print the verror
output to a file. Try this:
set ErrorFile [open "Errors.txt" w]
puts $ErrorFile [verror -all]
close $ErrorFile
Errors.txt will then contain the entire output of the command.