2122232425262728
public void acquire() { try{ super.acquire(); } catch(InterruptedException e){ throw new RuntimeInterruptedException(e); } }
3031323334353637
public boolean attempt(long msecs) { try{ return super.attempt(msecs); } catch(InterruptedException e){ throw new RuntimeInterruptedException(e); } }