There must be a way to prevent crashes in every mistake. I'm using this:
try
{
// blabla
throw "Error";
}
catch(err)
{
self.Error(err);
}
but I can not be continuously capturing them
There must be a way to prevent crashes in every mistake. I'm using this:
try
{
// blabla
throw "Error";
}
catch(err)
{
self.Error(err);
}
but I can not be continuously capturing them