AxibugEmuOnline/AxibugEmuOnline.Client/Assets/Plugins/Essgee.Unity/Exceptions/HandlerException.cs

14 lines
518 B
C#
Raw Normal View History

2025-02-14 16:09:33 +08:00
using System;
namespace Essgee.Exceptions
{
[Serializable]
public class HandlerException : Exception
{
public HandlerException() : base() { }
public HandlerException(string message) : base(message) { }
public HandlerException(string message, Exception innerException) : base(message, innerException) { }
public HandlerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
}
}