mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-18 09:24:39 +01:00
29 lines
454 B
C#
29 lines
454 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace LuaInterface
|
|
{
|
|
[Serializable]
|
|
public class LuaException : Exception
|
|
{
|
|
public LuaException()
|
|
{
|
|
}
|
|
|
|
public LuaException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public LuaException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected LuaException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|