Posts by Rafael Pontello • 11 points
1 post
-
1
votes2
answers645
viewsA: Where should I place the Try/Catch blocks using MVC?
You can use throws in the signature of the model methods to echo the exceptions directly to the Controller instead of the Try catch or use the Try catch itself and within the catch you throw new to…