Added commons project

This commit is contained in:
Markus Kreusch
2015-12-28 20:58:38 +01:00
parent 356ea5c319
commit 62d8cdfe4f
7 changed files with 81 additions and 41 deletions
@@ -0,0 +1,14 @@
package org.cryptomator.common;
public class UncheckedInterruptedException extends RuntimeException {
public UncheckedInterruptedException(InterruptedException e) {
super(e);
}
@Override
public InterruptedException getCause() {
return (InterruptedException) super.getCause();
}
}