Fail A Job Without Throwing An Exception

Sure, that seems reasonable though. Do what you need then:

catch (SomeException e)
{
  // do stuff
  throw;
}

throw; is not much different than job.Fail = true; or something, right?

1 Like