ToString()

Namespace ›› System.MfIO ›› FileNotFoundException ›› Methods ››
Parent Previous Next

ToString()

Overrides MfIOException.ToString()

instance.ToString()

ToString()

Creates and returns a string representation of the current exception.

Returns

Returns var containing string representation of the current exception.

Throws

Throws MfNullReferenceException is called on a non instance of class

Example

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
}