org.kafkacrypto.exceptions.KafkaCryptoException 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;
public class KafkaCryptoException extends Exception
{
public KafkaCryptoException(String s)
{
super(s);
}
public KafkaCryptoException(String s, Throwable cause)
{
super(s, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy