IJobManager _jobManager = Job.getJobManager();
_jobManager.join(ResourcesPlugin.FAMILY_AUTO_BUILD, null);
wasInterrupted = false;
} catch (final Throwable _t) {
if (_t instanceof OperationCanceledException) {
final OperationCanceledException e = (OperationCanceledException)_t;
e.printStackTrace();
} else if (_t instanceof InterruptedException) {
final InterruptedException e_1 = (InterruptedException)_t;
wasInterrupted = true;
} else {
throw Exceptions.sneakyThrow(_t);