OpenSim.Region.ScriptEngine.../src/LUA/Event/HookExceptionEventArgs.cs

14 lines
248 B
C#
Raw Normal View History

2020-08-06 23:19:35 +00:00
using System;
namespace NLua.Event
{
public class HookExceptionEventArgs : EventArgs
{
public Exception Exception { get; }
public HookExceptionEventArgs(Exception ex)
{
Exception = ex;
}
}
}