mirror of https://github.com/halo-dev/halo
Refactoring exception throw for backup import (#1698)
* refactor: blog import exceptionpull/1701/head
parent
d438163c04
commit
c9f7bd1abb
|
@ -456,7 +456,7 @@ public class BackupServiceImpl implements BackupService {
|
||||||
|
|
||||||
String version = (String) Objects.requireNonNullElse(data.get("version"), "");
|
String version = (String) Objects.requireNonNullElse(data.get("version"), "");
|
||||||
if (!VersionUtil.hasSameMajorAndMinorVersion(HaloConst.HALO_VERSION, version)) {
|
if (!VersionUtil.hasSameMajorAndMinorVersion(HaloConst.HALO_VERSION, version)) {
|
||||||
throw new IllegalArgumentException("导入数据的主次版本号与当前系统版本号不匹配,不支持导入!");
|
throw new BadRequestException("导入数据的主次版本号与当前系统版本号不匹配,不支持导入!");
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Attachment> attachments = Arrays.asList(mapper
|
List<Attachment> attachments = Arrays.asList(mapper
|
||||||
|
|
Loading…
Reference in New Issue