疯狂的狮子Li
2023-07-03 611b147cc30d87c71b5713cc0e5434ded05abcc7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.dromara.common.tenant.exception;
 
import org.dromara.common.core.exception.base.BaseException;
 
import java.io.Serial;
 
/**
 * 租户异常类
 *
 * @author Lion Li
 */
public class TenantException extends BaseException {
 
    @Serial
    private static final long serialVersionUID = 1L;
 
    public TenantException(String code, Object... args) {
        super("tenant", code, args, null);
    }
}