wang-hao-jie
2022-08-25 57dcc73636bb7d8dce89c808eb8cc988a7512264
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * Copyright (c) 2013-Now http://jeesite.com All rights reserved.
 */
package com.ruoyi.common.core.excel;
 
/**
 * Excel Exception
 * @author ThinkGem
 */
public class ExcelException extends RuntimeException {
 
    private static final long serialVersionUID = 1L;
 
    public ExcelException() {
        super();
    }
 
    public ExcelException(String message) {
        super(message);
    }
 
    public ExcelException(Throwable cause) {
        super(cause);
    }
 
    public ExcelException(String message, Throwable cause) {
        super(message, cause);
    }
}