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

io.github.icodegarden.nutrient.lang.concurrent.lock.LockException Maven / Gradle / Ivy

The newest version!
package io.github.icodegarden.nutrient.lang.concurrent.lock;

/**
 * 
 * @author Fangfang.Xu
 *
 */
public abstract class LockException extends RuntimeException {
	private static final long serialVersionUID = 1L;

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

	public LockException(Throwable cause) {
		super(cause);
	}

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy