We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed8f16b commit 0dcb4cdCopy full SHA for 0dcb4cd
mriya-core/src/main/java/com/codingdm/mriya/config/NacosConfig.java
@@ -63,13 +63,16 @@ private NacosConfig(){
63
}catch (NacosException e){
64
log.error("nacos config NacosException --> \n" + e.getErrMsg());
65
e.printStackTrace();
66
+ throw new RuntimeException("nacos config NacosException");
67
}catch (ConfigurationException e){
68
log.error("properties read IOException --> \n" + e.getMessage());
69
70
+ throw new RuntimeException("properties read IOException");
71
}
72
catch (IOException e) {
73
log.error("nacos config IOException --> \n" + e.getMessage());
74
75
+ throw new RuntimeException("nacos config IOException");
76
77
78
0 commit comments