Skip to content

Commit

Permalink
3.4.0版本
Browse files Browse the repository at this point in the history
- 完善参数校验错误码的取值逻辑
  • Loading branch information
feiniaojin committed Dec 20, 2023
1 parent f911f5b commit 14e6d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

public abstract class AbstractExceptionAliasRegisterConfig implements ApplicationContextAware {

private Logger logger = LoggerFactory.getLogger(AbstractExceptionAliasRegisterConfig.class);
private final Logger logger = LoggerFactory.getLogger(AbstractExceptionAliasRegisterConfig.class);

protected abstract void registerAlias(ExceptionAliasRegister register);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class ExceptionAliasRegister {

private Logger logger = LoggerFactory.getLogger(ExceptionAliasRegister.class);
private final Logger logger = LoggerFactory.getLogger(ExceptionAliasRegister.class);

private ConcurrentHashMap<Class<? extends Throwable>, ExceptionAliasFor> aliasForMap = new ConcurrentHashMap<>();

Expand Down

0 comments on commit 14e6d40

Please sign in to comment.