I want to send airbrakes that arise due to rendering of a marionette view to airbrake.io But i do not want to put try catch in all the methods of the view. Is there a better way to do it?
Current implementation:
try {
...
} catch (e) {
Airbrake.push(error);
}
you should use a mixin similar to this,
Define the mixin function
Apply the mixin to your view
I really love how you can add behaviour to functions and classes in javascript. it's something you don't get in classic inheritance languages like C# or java.