io.arivera.oss.embedded.rabbitmq.helpers.StartupException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of embedded-rabbitmq Show documentation
Show all versions of embedded-rabbitmq Show documentation
A library to facilitate running RabbitMQ directly from a JVM application as if it was an embedded service.
The newest version!
package io.arivera.oss.embedded.rabbitmq.helpers;
import io.arivera.oss.embedded.rabbitmq.bin.RabbitMqCommandException;
public class StartupException extends RabbitMqCommandException {
public StartupException(String msg) {
super(msg);
}
public StartupException(String msg, Throwable cause) {
super(msg, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy