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

com.github.blackshadowwalker.spring.distributelock.redis.AsyncLockExceptionHandler Maven / Gradle / Ivy

package com.github.blackshadowwalker.spring.distributelock.redis;

/**
 * Created by ASUS on 2016/8/16.
 */
public class AsyncLockExceptionHandler implements Thread.UncaughtExceptionHandler {

	Throwable error;

	public Throwable getError() {
		return error;
	}

	@Override
	public void uncaughtException(Thread t, Throwable e) {
		this.error = (Exception) e;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy