14 lines
345 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|