Name
Err.Raise Method
Syntax
Err.Raisenumber,[source], [description], _ [[helpfile],helpcontext]
numberUse: Required
Data Type: Long integer
A numeric identifier of the particular error.
sourceUse: Optional
Data Type: String
The name of the object or application responsible for generating the error.
descriptionUse: Optional
Data Type: String
A useful description of the error.
helpfileUse: Optional
Data Type: String
The fully qualified path of a Microsoft Windows Help or HTML Help file containing help or reference material about the error.
helpcontextUse: Optional
Data Type: Long
The context ID within
helpfile.
Description
Generates a runtime error.
Rules at a Glance
To use the Raise method, you must specify an error number.
If you supply any of the
number,source,description,helpfile, andhelpcontextarguments when you call the Err.Raise method, they are supplied as values to the Err object’s Number, Source, Description, HelpFile, and HelpContext properties, respectively. Refer to the entries for the individual properties for full descriptions of and rules for each property.
Programming Tips and Gotchas
The Raise method doesn’t reinitialize the Err object prior to assigning the values you pass in as arguments. This can mean that if you Raise an error against an Err object that hasn’t been cleared since the last error, any properties you don’t specify values for still contain the values from the last error.
As well as using Raise in a runtime scenario, you can put it to good use in the development ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access