001    package railo.commons.lock;
002    
003    import railo.runtime.exp.NativeException;
004    
005    public class LockInterruptedException extends NativeException {
006    
007            private static final long serialVersionUID = -3450411938137674552L;
008            private InterruptedException e;
009    
010            public LockInterruptedException(InterruptedException e) {
011                    super(e);
012                    this.e=e;
013            }
014    
015            public InterruptedException getLockInterruptedException() {
016                    return e;
017            }
018    
019    }