All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev.shopstack.security.hmac.exception.HmacEncodingException Maven / Gradle / Ivy

The newest version!
package dev.shopstack.security.hmac.exception;

import lombok.NoArgsConstructor;

import static lombok.AccessLevel.PRIVATE;

/**
 * Exception thrown when a problem occurs when encoding a HMAC.
 */
@NoArgsConstructor(access = PRIVATE)
public final class HmacEncodingException extends RuntimeException {

    public HmacEncodingException(String message, Throwable cause) {
        super(message, cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy