fix: 与acs交互之间存在的问题

This commit is contained in:
2023-08-08 15:19:32 +08:00
parent f7be70b52e
commit ab69d3e9eb
37 changed files with 307 additions and 231 deletions

View File

@@ -58,4 +58,18 @@ public class test {
// return g;
// }
@Test
void test03() {
try {
for (int i = 0; i < 5; i++) {
System.out.println(i);
if (i==3) {
throw new RuntimeException("1");
}
}
} catch (Exception e) {
System.out.println(e.getMessage());
}
}
}