tech.rsqn.useful.things.encryption.KeyRollRequiredException 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 KeyRollRequiredException extends RuntimeException {
public KeyRollRequiredException() {
super();
}
public KeyRollRequiredException(String message) {
super(message);
}
public KeyRollRequiredException(String message, Throwable cause) {
super(message, cause);
}
public KeyRollRequiredException(Throwable cause) {
super(cause);
}
protected KeyRollRequiredException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy