1
zj
2025-10-09 79b5cc847355ec6f0ed90fe351c5a79628477aac
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);
    }
}