All checks were successful
Build and Deploy LSFE / build-and-deploy (push) Successful in 1m43s
13 lines
268 B
C#
13 lines
268 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LSFE.Application.Common.Exceptions
|
|
{
|
|
public class BusinessRuleException : Exception
|
|
{
|
|
public BusinessRuleException(string message)
|
|
: base(message) { }
|
|
}
|
|
}
|