package com.persagy.common.exception; /** * 分布式锁异常 * * @description * @author persagy * @since 2020年11月4日: 下午8:09:02 */ public class LockException extends RuntimeException { private static final long serialVersionUID = 6610083281801529147L; public LockException(String message) { super(message); } }