疯狂的狮子Li
2025-02-07 95c01301f65379e7634e4619bf4c49186aa5be41
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);
    }
}