mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-09-19 22:44:32 +00:00
Added commons project
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user