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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy