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

io.arivera.oss.embedded.rabbitmq.helpers.StartupException Maven / Gradle / Ivy

Go to download

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