mirror of https://github.com/EasyAbp/EShop.git
2 changed files with 14 additions and 1 deletions
@ -0,0 +1,13 @@ |
|||
using System; |
|||
using Volo.Abp; |
|||
|
|||
namespace EasyAbp.EShop.Products.Products |
|||
{ |
|||
public class ProductDetailHasBeenUsedException : BusinessException |
|||
{ |
|||
public ProductDetailHasBeenUsedException(Guid productDetailId) : base( |
|||
message: $"ProductDetail {productDetailId} has been used.") |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue