namespace XFEExtension.NetCore.ServerInteractive.Exceptions; /// /// 处理标准请求时异常 /// public class ProcessStandardRequestException : XFEServerCoreException { /// public ProcessStandardRequestException() { } /// /// public ProcessStandardRequestException(string? message) : base(message) { } /// public ProcessStandardRequestException(string? message, Exception? innerException) : base(message, innerException) { } }