AGS.Plugin.Lua.LuaException.LuaException C# (CSharp) Method

LuaException() public method

public LuaException ( IntPtr L, string message ) : System
L System.IntPtr
message string
return System
        public LuaException(lua_State L, string message)
            : base(message)
        {
            this.L = L;
        }
LuaException