seterrorhandler

From Warcraft Wiki
Jump to navigation Jump to search
Flavors
Links
Info
Added in 1.10.0 / 1.13.2

Sets the error handler to the given function.

seterrorhandler(errFunc)

Arguments

errFunc
function - The function to call when an error occurs. The function is passed a single argument containing the error message.

Example

If you wanted to print all errors to your chat frame, you could do:

seterrorhandler(print);

Alternatively, the following would also perform the same task:

seterrorhandler(function(msg)
 print(msg);
end);