✨
This commit is contained in:
11
StopShopping.Services/Extensions/ServiceException.cs
Normal file
11
StopShopping.Services/Extensions/ServiceException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace System;
|
||||
|
||||
/// <summary>
|
||||
/// 业务异常
|
||||
/// </summary>
|
||||
public class ServiceException : ApplicationException
|
||||
{
|
||||
public ServiceException() : base() { }
|
||||
|
||||
public ServiceException(string? message) : base(message) { }
|
||||
}
|
||||
Reference in New Issue
Block a user