Added error handling

This commit is contained in:
Mandeep Moun
2025-10-11 00:21:45 -06:00
parent 8379a326f8
commit 6c591bbf37
2 changed files with 45 additions and 19 deletions

View File

@@ -1,14 +1,17 @@
public class test {
void methodOne() {
class Helper234 {
void doStuff() {}
public class Helper234 {
void doStuff() {
}
}
class Helper2 {
void doStuff() {}
private class Helper2 {
void doStuff() {
}
}
}
void methodTwo() {
System.out.println("Hello");
}
}