Files

18 lines
368 B
C#
Raw Permalink Normal View History

2026-07-14 16:09:25 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JY.MES.Exceptions
{
public class MesNetworkException : Exception
{
public MesNetworkException(string message) : base(message)
{ }
public MesNetworkException() : base("MES网络异常")
{ }
}
}