com.raynigon.ecs.logging.async.scheduler.MdcScheduledRunnableException Maven / Gradle / Ivy
package com.raynigon.ecs.logging.async.scheduler;
import java.util.Map;
public class MdcScheduledRunnableException extends RuntimeException {
private final Map mdcTags;
public MdcScheduledRunnableException(Map mdcTags, Throwable t) {
super(t);
this.mdcTags = mdcTags;
}
public Map getMdcTags() {
return mdcTags;
}
}