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

com.yomahub.liteflow.exception.ParallelExecutorCreateException Maven / Gradle / Ivy

The newest version!
package com.yomahub.liteflow.exception;

/**
 * 并行策略执行器创建异常
 *
 * @author luo yi
 * @since 2.11.0
 */
public class ParallelExecutorCreateException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	/** 异常信息 */
	private String message;

	public ParallelExecutorCreateException(String message) {
		this.message = message;
	}

	@Override
	public String getMessage() {
		return message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy