Allows user to receive and log any exceptions not handled by the server

Namespace: Monnit.Mine
Assembly: MonnitMineAPI (in MonnitMineAPI.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
void LogException(
	Exception ex,
	string location
)
Visual Basic
Sub LogException ( 
	ex As Exception,
	location As String
)
Visual C++
void LogException(
	Exception^ ex, 
	String^ location
)
F#
abstract LogException : 
        ex : Exception * 
        location : string -> unit 

Parameters

ex
Type: System..::..Exception
Exception that was thrown
location
Type: System..::..String
string representation of the function that threw the exception when available

See Also