Pu Zhibing
2025-05-08 5b64f31f1d35b38b51935b5fa7f4b8cf46fbf4cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Copyright (c) Huawei Technologies Co., Ltd. 2022-2022. All rights reserved.
 */
 
package com.ruoyi.account.util.carBrand;
 
public class UnsupportProtocolException extends Exception {
    private static final long serialVersionUID = 4312820110480855928L;
    private String msgDes; // 异常对应的描述信息
 
    public UnsupportProtocolException(String message) {
        super(message);
        msgDes = message;
    }
}