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