Overrides MfIOException.ToString()
instance.ToString()
Creates and returns a string representation of the current exception.
Returns var containing string representation of the current exception.
Throws MfNullReferenceException is called on a non instance of class
try
{
file := GetFile("C:/tmp/myfile.txt")
}
catch e
{
MsgBox, 16, File Error, % e.ToString()
}
; display a message box with the following message
; FileNotFoundException: Unable to Locate File
; File name: 'C:/tmp/myfile.txt'
GetFile(file)
{
; ... some code to try and locate file
ex := new MfIO.FileNotFoundException("Unable to Locate File", file)
ex.SetProp(A_LineFile, A_LineNumber, A_ThisFunc)
throw ex
}