nlError
nlError(o_netlistert_error) => nil
Description
Issues a user error. The error is printed immediately and it is collected on the object. In this way, if netlisting is interrupted, the user is aware of any errors that occurred during netlisting. All errors are printed to the netlist log file.
Arguments
|
The description of the error in the form of a format string. |
Value Returned
Examples
Displays an error message in the specified format:
nlError(nl sprintf("Missing Parameter '%s' in %s" param nlGetSimName(inst) ) )
=> nil
Return to top