Adds a "Raises" section containing the specified list of (some of) the exceptions which may be raised by a method/routine. Only relevant for methods, routines and properties.
Example
{:Returns filedate of the file.
@raises Exception if file not found}
Function FileDate(const i_strFilename: String): TDateTime;
Begin
...
End;