# QUESTION 51:
Exhibit:
1 import java.io.IOException;
2 public class ExceptionTest(
3 public static void main (String[]args)
4 try (
5 methodA();
6 ) catch (IOException e) (
7 system.out.printIn("Caught IOException");
8 ) catch (Exception e) (
9 system.out.printIn("Caught Exception");
10 )
11 )
12 public void methodA () {
13 throw new IOException ();
14 )
Solve it and check resutlt
Features from MVC2 vs MVC3 vs MVC4 vs MVC5 vs MVC6
-
*MVC 2 *
- Customer Side Validation
- Templated Helpers
- Regions
- Nonconcurrent Controllers
- Html.ValidationSummary Helper Method
...
7 years ago
0 comments:
Post a Comment