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