peng
2025-11-24 49c4f3d749ff49f30d529e5487c64fc1749b71fa
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);
    }
}