Browse Source

reduced visibility

Sebastian Stenzel 1 year ago
parent
commit
f36e2bb4b7

+ 7 - 1
src/main/java/org/cryptomator/ui/keyloading/hub/DeviceAlreadyExistsException.java

@@ -1,6 +1,12 @@
 package org.cryptomator.ui.keyloading.hub;
 
+import org.cryptomator.cryptolib.api.MasterkeyLoadingFailedException;
+
 /**
  * Thrown, when Hub registerDevice-Request returns with 409
  */
-public class DeviceAlreadyExistsException extends RuntimeException {}
+class DeviceAlreadyExistsException extends MasterkeyLoadingFailedException {
+	public DeviceAlreadyExistsException() {
+		super("Device already registered on this Hub instance");
+	}
+}