luodangjia
2024-08-28 7d797c3f197371bb66c8ed3e60327817e9f0364c
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;
    }
}