Returns a string from an error object
(vl-catch-all-error-message error-obj)
Arguments
vl-catch-all-apply.
An error object returned byReturn Values
A string containing an error message.
Examples
vl-catch-all-apply:
Divide by zero using_$ (setq catchit (vl-catch-all-apply '/ '(50 0)))
#<%catch-all-apply-error%>
vl-catch-all-apply function traps the error and returns an error object. Use vl-catch-all-error-message to see the error message contained in the error object:
The_$ (vl-catch-all-error-message catchit)
"divide by zero"
*error*, vl-catch-all-apply, and vl-catch-all-error-p functions. The Error Handling in AutoLISP topic in the AutoLISP Developer's Guide.
The