plusone-commons 修改了 BaseException

This commit is contained in:
2023-09-09 18:19:58 +08:00
parent b870684fea
commit 208d7c93c9
10 changed files with 55 additions and 55 deletions

View File

@@ -186,7 +186,7 @@ public class FastDFSUtil {
var sha512Hex = new BigInteger(1, result).toString(16);
return Objects.requireNonNull(sha512Hex);
} catch (NoSuchAlgorithmException e) {
throw new SysException(e);
throw SysException.of(e);
}
}
}