Determines whether an argument is an error object returned from vl-catch-all-apply
(vl-catch-all-error-p arg)
Arguments
Any argument.
Return Values
T, if the supplied argument is an error object returned from vl-catch-all-apply; otherwise nil.
Examples
vl-catch-all-apply:
Divide by zero using_$ (setq catchit (vl-catch-all-apply '/ '(50 0)))
#<%catch-all-apply-error%>
vl-catch-all-error-p to determine if the value returned by vl-catch-all-apply is an error object:
Use_$ (vl-catch-all-error-p catchit)
T
*error*, vl-catch-all-apply, and vl-catch-all-error-message functions. The Error Handling in AutoLISP topic in the AutoLISP Developer's Guide.
The