Abp Vnext 的 Vue3 实现版本
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
479 B

using Microsoft.Extensions.Logging;
using Volo.Abp;
namespace Lion.AbpPro.LanguageManagement;
public class LanguageManagementApplicationException : BusinessException
{
public LanguageManagementApplicationException(
string code = null,
string message = null,
string details = null,
Exception innerException = null,
LogLevel logLevel = LogLevel.Warning)
: base(code, message, details, innerException, logLevel)
{
}
}