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

de.ikor.sip.foundation.testkit.exception.NoRouteInvokerException Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version
package de.ikor.sip.foundation.testkit.exception;

import de.ikor.sip.foundation.testkit.workflow.whenphase.routeinvoker.RouteInvoker;
import de.ikor.sip.foundation.testkit.workflow.whenphase.routeinvoker.RouteInvokerFactory;

/** Exception for non-existent {@link RouteInvoker} in {@link RouteInvokerFactory} */
public class NoRouteInvokerException extends Exception {

  public NoRouteInvokerException(String routeId) {
    super(String.format("No Route Invoker could be found for route id: %s", routeId));
  }

  /**
   * Method for hiding stack trace in console
   *
   * @return Throwable
   */
  @Override
  public synchronized Throwable fillInStackTrace() {
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy