![JAR search and dependency download from the Maven repository](/logo.png)
com.kosprov.jargon2.spi.Jargon2BackendException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jargon2-api Show documentation
Show all versions of jargon2-api Show documentation
Fluent Java API for Argon2 password hashing
package com.kosprov.jargon2.spi;
import com.kosprov.jargon2.api.Jargon2Exception;
/**
* Generic exception from a Jargon2 backend.
*/
public class Jargon2BackendException extends Jargon2Exception{
public Jargon2BackendException() {
}
public Jargon2BackendException(String message) {
super(message);
}
public Jargon2BackendException(String message, Throwable cause) {
super(message, cause);
}
public Jargon2BackendException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy