Sign in

guzijian / bsth-alcohol-sign · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth-alcohol-sign
  • ..
  • exception
  • InterruptException.java
  • 蓝斯接口
    0ac09b45
    liujun001 authored
    2024-07-25 15:59:35 +0800  
    Browse Code »
InterruptException.java 341 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.ruoyi.exception;

import lombok.Data;

/**
 * @author liujun
 * @date 2024年07月25日 15:22
 */
@Data
public class InterruptException extends RuntimeException {
    private String code;
    private String message;

    public InterruptException(String message) {
        super(message);
        this.message = message;
    }
}