org.kafkacrypto.exceptions.KafkaCryptoExchangeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafkacrypto-java Show documentation
Show all versions of kafkacrypto-java Show documentation
Java port of kafkacrypto, a lightweight and cross-platform/cross-language encryption library for Apache Kafka.
The newest version!
package org.kafkacrypto.exceptions;
import org.kafkacrypto.exceptions.KafkaCryptoException;
public class KafkaCryptoExchangeException extends KafkaCryptoException
{
public KafkaCryptoExchangeException(String s)
{
super(s);
}
public KafkaCryptoExchangeException(String s, Throwable cause)
{
super(s, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy