Files
zszq-trs/YLErpDAL/CustomizedBizLogic/BizLogicException.cs
T
2024-05-09 14:06:26 +08:00

14 lines
345 B
C#

namespace YLErp.CustomizedBizLogic
{
public class BizLogicException : ServiceException
{
public BizLogicException(Exception innerException) : base(innerException)
{
}
public BizLogicException(string message, Exception innerException = null) : base(message, innerException)
{
}
}
}