8.9
luodangjia
2024-09-03 2855ae89d2ab6268e1edc42c3e9d7e73c8e7259e
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.admin.utils;
 
public class UnsupportProtocolException extends Exception {
    private static final long serialVersionUID = 4312820110480855928L;
    private String msgDes; // 异常对应的描述信息
 
    public UnsupportProtocolException(String message) {
        super(message);
        msgDes = message;
    }
}