org.cryptomator.integrations.autostart.ToggleAutoStartFailedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of integrations-api Show documentation
Show all versions of integrations-api Show documentation
Defines optional service interfaces that may be used by Cryptomator
package org.cryptomator.integrations.autostart;
public class ToggleAutoStartFailedException extends Exception {
public ToggleAutoStartFailedException(String message) {
super(message);
}
public ToggleAutoStartFailedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy