LockException.java 351 B

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