Essgee.Unity/Assets/Plugins/Essgee/Exceptions/HandlerException.cs
2025-01-02 17:55:16 +08:00

14 lines
482 B
C#

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) { }
}
}