using System; using System.Collections.Generic; using System.Text; namespace LuaInterface { /// /// Add a specific type for Lua exceptions (kevinh) /// public class LuaException : ApplicationException { public LuaException(string reason) : base(reason) { } } }