fix
This commit is contained in:
16
Application/Exceptions/ApplicationException.cs
Normal file
16
Application/Exceptions/ApplicationException.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
namespace Application.Exceptions;
|
||||
|
||||
/// <summary>
|
||||
/// 应用层异常基类
|
||||
/// </summary>
|
||||
public class ApplicationException : Exception
|
||||
{
|
||||
public ApplicationException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public ApplicationException(string message, Exception innerException)
|
||||
: base(message, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user