it.auties.whatsapp.exception.HmacValidationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whatsappweb4j Show documentation
Show all versions of whatsappweb4j Show documentation
Standalone fully-featured Whatsapp Web API for Java and Kotlin
package it.auties.whatsapp.exception;
import lombok.NonNull;
/**
* An unchecked exception that is thrown when a hmac signature cannot be validated
*/
public class HmacValidationException extends SecurityException {
public HmacValidationException(@NonNull String location) {
super(location);
}
}