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

cn.schoolwow.data.thread.exception.ThreadException Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package cn.schoolwow.data.thread.exception;

import java.util.Map;

/**多线程执行时异常*/
public class ThreadException extends Exception{
    private Map threadIdExceptionMap;

    public ThreadException(String message, Map threadIdExceptionMap) {
        super(message);
        this.threadIdExceptionMap = threadIdExceptionMap;
    }

    public Map getThreadIdExceptionMap() {
        return threadIdExceptionMap;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy