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

com.networknt.tram.command.consumer.DestinationForExceptionRootObject Maven / Gradle / Ivy

package com.networknt.tram.command.consumer;

public class DestinationForExceptionRootObject {
  private final Object parameter;
  private final Throwable cause;

  public Object getParameter() {
    return parameter;
  }

  public Throwable getCause() {
    return cause;
  }

  public DestinationForExceptionRootObject(Object parameter, Throwable cause) {
    this.parameter = parameter;
    this.cause = cause;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy