
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