namespace XFEExtension.NetCore.ServerInteractive.Exceptions;
///
/// XFE服务器核心异常
///
public class XFEServerCoreException : Exception
{
///
public XFEServerCoreException() { }
///
public XFEServerCoreException(string? message) : base(message) { }
///
public XFEServerCoreException(string? message, Exception? innerException) : base(message, innerException) { }
}