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

com.jd.blockchain.utils.concurrent.RuntimeInterruptedException Maven / Gradle / Ivy

The newest version!
package com.jd.blockchain.utils.concurrent;

/**
 * 未预期的中断异常;
 * 
 * @author haiq
 *
 */
public class RuntimeInterruptedException extends RuntimeException {

	private static final long serialVersionUID = -4404758941888371638L;

	public RuntimeInterruptedException() {
	}

	public RuntimeInterruptedException(String message) {
		super(message);
	}

	public RuntimeInterruptedException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy