tech.rsqn.useful.things.encryption.DecryptException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-utilities Show documentation
Show all versions of application-utilities Show documentation
A collection of heavier utilities used by rsqn.tech opensource projects.
package tech.rsqn.useful.things.encryption;
public class DecryptException extends RuntimeException {
public DecryptException() {
}
public DecryptException(String message) {
super(message);
}
public DecryptException(String message, Throwable cause) {
super(message, cause);
}
public DecryptException(Throwable cause) {
super(cause);
}
public DecryptException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy