无关风月
2025-03-20 053492c159a2cb8f12e8a7f59675ef6516d31440
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;
    }
}