using System; namespace NLua.Exceptions { /// /// Exceptions thrown by the Lua runtime /// [Serializable] public class LuaException : Exception { public LuaException (string message) : base(message) { } public LuaException (string message, Exception innerException) : base(message, innerException) { } } }