1
zj
2025-08-21 01bd03652fef2399c2acfb1930d044b106393f85
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.im.comm;
 
public class ImBusinessException extends RuntimeException {
    public ImBusinessException(String message) {
        super(message);
    }
 
    public ImBusinessException(String message, Throwable cause) {
        super(message, cause);
    }
}